{
  "name": "DiVinci WhiteLabel AI",
  "description": "AI-powered assistant with RAG capabilities for knowledge management and conversational AI. Supports chat, document search, and knowledge base queries. Requires Bearer token authentication.",
  "url": "https://mcp.divinci.app",
  "protocolVersion": "0.3",
  "provider": {
    "organization": "DiVinci AI",
    "url": "https://divinci.app"
  },
  "version": "1.0.0",
  "documentationUrl": "https://mcp.divinci.app/info",
  "preferredTransport": "JSONRPC",
  "additionalInterfaces": [
    {
      "url": "https://mcp.divinci.app/a2a",
      "transport": "JSONRPC"
    },
    {
      "url": "https://mcp.divinci.app/mcp",
      "transport": "HTTP+MCP"
    }
  ],
  "supportedInterfaces": [
    {
      "url": "https://mcp.divinci.app/a2a",
      "transport": "JSONRPC"
    },
    {
      "url": "https://mcp.divinci.app/mcp",
      "transport": "HTTP+MCP"
    }
  ],
  "capabilities": {
    "streaming": true,
    "pushNotifications": false,
    "stateTransitionHistory": true
  },
  "defaultInputModes": [
    "text"
  ],
  "defaultOutputModes": [
    "text"
  ],
  "skills": [
    {
      "id": "send_message",
      "name": "Send Message",
      "description": "Send a message to the AI assistant and receive a response",
      "tags": [
        "chat",
        "conversation",
        "ai"
      ],
      "examples": [
        "What is machine learning?",
        "Help me write a poem about spring",
        "Explain quantum computing"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "text"
      ]
    },
    {
      "id": "get_transcript",
      "name": "Get Transcript",
      "description": "Retrieve a specific conversation transcript by ID",
      "tags": [
        "transcript",
        "history",
        "conversation"
      ],
      "examples": [
        "Get the transcript for conversation abc123"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "text",
        "data"
      ]
    },
    {
      "id": "list_transcripts",
      "name": "List Transcripts",
      "description": "List recent conversation transcripts",
      "tags": [
        "transcript",
        "history",
        "list"
      ],
      "examples": [
        "Show my recent conversations",
        "List last 10 transcripts"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "text",
        "data"
      ]
    },
    {
      "id": "search_knowledge",
      "name": "Search Knowledge Base",
      "description": "Search the knowledge base using semantic search",
      "tags": [
        "rag",
        "search",
        "knowledge"
      ],
      "examples": [
        "Find documents about API authentication",
        "Search for deployment best practices"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "text",
        "data"
      ]
    },
    {
      "id": "list_data_sources",
      "name": "List Data Sources",
      "description": "List available knowledge base data sources",
      "tags": [
        "rag",
        "data",
        "sources"
      ],
      "examples": [
        "What data sources are available?",
        "Show me the knowledge bases"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "text",
        "data"
      ]
    },
    {
      "id": "get_document",
      "name": "Get Document",
      "description": "Retrieve a specific document from the knowledge base",
      "tags": [
        "rag",
        "document",
        "retrieve"
      ],
      "examples": [
        "Get document doc-123",
        "Retrieve the API reference document"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "text",
        "data"
      ]
    }
  ]
}