Getting StartedMCP Server
Getting Started

MCP Server

Connect AI tools like Claude, Cursor, and ChatGPT to Deepvue's documentation using the Model Context Protocol (MCP) server.

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.

MCP server endpoint

https://deepvue.documentationai.com/_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://deepvue.documentationai.com/_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.