Quick summary
Connect
https://developer.suki.ai/mcp to Cursor, VS Code, Claude, Claude Code, Codex, or similar tools. Agents can search the docs, read pages from a virtual filesystem, and submit documentation feedback. The server does not call Suki product APIs on your behalf.- Find integration answers in the current published docs.
- Pull full page Markdown into the chat when a snippet is not enough for an answer.
- Discover agent skills that Suki developer documentation exposes as MCP resources, without a separate install step for discovery.
- Report incorrect or confusing docs back to the Suki docs team from the agent.
- It does not execute any product APIs on your behalf.
- It does not replace Partner Token or Suki Token authentication for those APIs.
Key benefits
Accelerate Your Development
Use the documentation as an MCP service in your AI code editor to assist coding and integration tasks.
Improve Your LLM's Responses
Retrieve information from the documentation in your AI code editor to improve response accuracy.
Reduce Manual Research
Reduce the need for manual research and documentation lookup.
Reduce LLM Hallucinations
Ground responses in current documentation instead of invented endpoints or SDK patterns.
MCP server URL
Use the following URL as the custom connector endpoint:https://developer.suki.ai/.well-known/mcp (and /.well-known/mcp.json). Prefer the public URL above when you configure a client by hand.
The screenshot below shows the Documentation MCP dropdown in the top navigation bar:

How the MCP server works
When an AI application connects to the Suki documentation MCP server, it can search indexed site content and retrieve full pages as Markdown while it answers your prompt. That keeps answers aligned with what is published ondeveloper.suki.ai.
- AI applications can search proactively while generating a response, even if you did not ask them to search.
- They choose which tool to call from conversation context and relevance to Suki docs.
- Each tool call runs during generation, so the model can use up-to-date documentation.
MCP server tools
When you connect the Suki developer documentation MCP server, agents can use three tools:- Search: Searches across the site and returns snippets with titles and links. Use this to discover information or find pages that match a query.
- Query docs filesystem: Reads and navigates a virtual documentation filesystem with shell-style commands (
rg,head,cat,tree, and similar). Use this to browse structure, pull exact sections, or read one or more full pages in a single call. - Submit feedback: Reports a documentation issue when a page is incorrect, outdated, confusing, or incomplete. The agent supplies the page path and a description. Mintlify records that as unhelpful feedback for the docs team.
The documentation MCP server is read-only for content retrieval, plus optional feedback. It does not call Suki product APIs, mutate your integration, or access private partner data.
MCP resources
The search MCP server also exposes publishedskill.md files as MCP resources. Connected agents can discover and read those skill descriptions without installing skills separately. For install commands and product skills, see AI-optimized documentation and AI coding tools.
Search parameters
The search tool supports optional parameters that AI applications may apply when your site has matching filters:Suki developer documentation is primarily a single public English site. Your AI tool decides whether to pass these filters based on the conversation.
How to set up MCP integration
- Cursor
- VS Code
- Claude
- Claude Code
- Codex
Open MCP Settings in Cursor
- Use Command + Shift + P on Mac or Ctrl + Shift + P on Windows to open the command palette.
- Search for Open MCP settings and select Add custom MCP. This opens
mcp.json. - Add the following configuration:
Test your connection
After configuration, ask your AI tool:Using multiple MCP servers
You can connect several MCP servers in one AI tool. Connected servers do not inject content until the model calls a search or read tool. Best practices:- Connect only the MCP servers relevant to your current work.
- Be specific in prompts so the model searches the most relevant server.
- Disconnect servers you are not using to reduce context usage.
Troubleshooting
MCP Server Not Connecting
MCP Server Not Connecting
Verify the URL is exactly
https://developer.suki.ai/mcp. Check your internet connection and restart your AI tool after configuration.Search or Filesystem Tools Not Available
Search or Filesystem Tools Not Available
Confirm the MCP server was added correctly. Try removing and re-adding the server configuration. Check your AI tool’s MCP support documentation. Tool names can be site-specific; ask the model which tools it has after connect.
Search Returns No Results
Search Returns No Results
Try different or more general search terms (for example, “webhook” instead of “session completion webhook payload”). Verify the MCP connection is active. Hidden or
noindex pages are not available through search MCP.Rate Limit Errors
Rate Limit Errors
If the MCP server returns HTTP
429 Too Many Requests, wait and retry. Mintlify applies per-user and per-site hourly limits on search and filesystem tools. Most clients recover automatically within an hour.Additional context for AI tools
Use these URLs when an AI tool needs broader context than a single page:Install skills from the MCP server
Use the following command to install every published skill that Suki developer documentation exposes as MCP resources:npx skills add for the skill that matches that hub.
The screenshot below shows Install Skill on the Patient Summary index hub, including the skill version on the control:

v2.4). When the hub marks the skill as New or Updated, reinstall that skill so your editor gets the latest copy. Run the command from Install Skill again, or reconnect the documentation MCP server and ask your agent to install or refresh the latest skills.