Getting StartedDocs Search MCP

Docs Search MCP — Connect AI Tools to Deepvue Docs

Connect Claude, Cursor, or ChatGPT to Deepvue docs using the Model Context Protocol. Query API documentation directly from your AI coding tools.

Overview

Deepvue provides an MCP (Model Context Protocol) server that allows external AI tools to search and retrieve information from this documentation. The server exposes a single tool, searchDocumentation, which performs grounded search using the same ranking algorithm as the in-app AI assistant.

This means AI tools like Claude, Cursor, ChatGPT, and other MCP-compatible clients can access Deepvue's API documentation directly — helping developers get accurate, up-to-date answers about Deepvue APIs without leaving their workflow.

Docs Search MCP endpoint

This endpoint serves the read-only documentation search server (searchDocumentation). It is separate from the Deepvue MCP, which runs live verifications.

https://docs.deepvue.ai/_mcp

Capabilities

FeatureDetails
ToolsearchDocumentation — query indexed documentation
Search scopeAll pages, headings, API references, and code snippets
AccessRead-only — no content modification
AvailabilityAutomatic — no API key required

Connect to the MCP server

Add the following to your Claude Desktop MCP configuration file (claude_desktop_config.json):

{
  "mcpServers": {
    "deepvue-docs": {
      "url": "https://docs.deepvue.ai/_mcp"
    }
  }
}

Once configured, Claude will automatically search Deepvue documentation when you ask questions about Deepvue APIs.

Example usage

Once connected, you can ask your AI tool questions like:

  • "How do I authenticate with the Deepvue API?"
  • "What parameters does the PAN Basic verification endpoint accept?"
  • "Show me how to implement exponential backoff for rate limits"
  • "What is the async polling pattern for driver license verification?"
  • "What consent parameters are required for KYC verification?"

The AI tool will search Deepvue's documentation and return grounded answers with accurate, up-to-date information.

How it works

The MCP server provides access to all public documentation only. The same content available on this documentation site is searchable through the MCP server.