Skip to main content

What is MCP?

The Model Context Protocol (MCP) is an open standard that lets AI-powered IDEs and tools connect to external data sources. Sixtyfour provides an MCP server that gives your IDE’s AI assistant direct access to search and retrieve our documentation.

Why use it?

  • Search Sixtyfour docs without leaving your editor
  • Get code examples and API references inline while coding
  • Let your AI assistant answer questions about Sixtyfour endpoints, parameters, and usage

MCP Server URL

https://docs.sixtyfour.ai/mcp

Setup

Add the following to your IDE’s MCP configuration file:
{
  "mcpServers": {
    "sixtyfour-docs": {
      "url": "https://docs.sixtyfour.ai/mcp"
    }
  }
}
The exact location of the MCP configuration file varies by IDE. Consult your IDE’s documentation for where to add MCP server entries.

Common IDE config paths

IDEConfig location
Cursor.cursor/mcp.json in your project root or ~/.cursor/mcp.json globally
VS Code (Copilot).vscode/mcp.json in your project root
Claude CodeRun claude mcp add --transport http sixtyfour-docs https://docs.sixtyfour.ai/mcp in your terminal (docs)
Windsurf~/.codeium/windsurf/mcp_config.json

Available tools

Once connected, your AI assistant can use the following tool:
ToolDescription
SearchSixtyFourAiDocumentationSearch across all Sixtyfour AI documentation to find API references, code examples, guides, and setup instructions

Example usage

After setup, you can ask your AI assistant questions like:
  • “How do I use the enrich-company endpoint?”
  • “What parameters does find-email accept?”
  • “Show me an example of using webhooks with Sixtyfour AI”
Your assistant will search the Sixtyfour AI docs via MCP and return relevant answers with code examples.