Skip to main content

Overview

FrankieOne provides a Model Context Protocol (MCP) server that gives AI coding assistants direct access to our documentation, API references, and integration guides. This means you can ask your AI assistant questions about FrankieOne — like how to structure API payloads, configure webhooks, or implement KYC checks — and get answers sourced directly from our docs, without leaving your IDE.
No authentication is required. The MCP server is a public endpoint available to all FrankieOne customers and developers.

Quick setup

Add the following to your MCP client configuration:
{
  "mcpServers": {
    "frankieone": {
      "type": "url",
      "url": "https://docs.frankieone.com/mcp"
    }
  }
}

Setup by tool

Add to your ~/.mcp.json file:
{
  "mcpServers": {
    "frankieone": {
      "type": "url",
      "url": "https://docs.frankieone.com/mcp"
    }
  }
}
Restart Claude Code to activate the server.
Open Settings > Developer > Edit Config and add to your claude_desktop_config.json:
{
  "mcpServers": {
    "frankieone": {
      "type": "url",
      "url": "https://docs.frankieone.com/mcp"
    }
  }
}
Restart Claude Desktop to activate.
Go to Settings > MCP Servers > Add Server and configure:
  • Name: frankieone
  • Type: url
  • URL: https://docs.frankieone.com/mcp
Go to Settings > MCP Servers and add:
{
  "mcpServers": {
    "frankieone": {
      "type": "url",
      "url": "https://docs.frankieone.com/mcp"
    }
  }
}
The FrankieOne MCP server is available at:
https://docs.frankieone.com/mcp
Add this as a remote URL-based MCP server in your client’s configuration. No API key or authentication is needed.

Available tools

ToolDescription
SearchFrankieoneSearch across the FrankieOne knowledge base to find documentation, code examples, API references, and integration guides.

SearchFrankieone parameters

ParameterTypeRequiredDescription
querystringYesA query to search the content with
versionstringNoFilter to a specific API version (e.g., v2.0.0)
languagestringNoFilter to a specific language code (e.g., en, zh). Defaults to en
apiReferenceOnlybooleanNoOnly return API reference documentation
codeOnlybooleanNoOnly return code snippets

Example queries

Once connected, try asking your AI assistant:
  • “How do I create an individual entity using the FrankieOne v2 API?”
  • “What fields are required for a Brazilian KYC check?”
  • “Show me the webhook payload format for check completion”
  • “How does forceRefresh work when re-running a verification?”
  • “What are the available recipe types for international checks?”
  • “How do I configure OneSDK for document capture?”

How it works

The MCP server connects your AI assistant to FrankieOne’s documentation in real time. When you ask a question:
  1. Your AI assistant sends the query to the FrankieOne MCP server
  2. The server searches across all published documentation
  3. Relevant content — including code examples, API references, and guides — is returned
  4. Your AI assistant uses this context to provide an accurate, up-to-date answer
The MCP server always returns content from the latest published documentation, so you’ll always get current information about FrankieOne’s APIs and features.

Requirements

  • An MCP-compatible AI tool (Claude Code, Claude Desktop, Cursor, Windsurf, or similar)
  • Internet connectivity to reach docs.frankieone.com
  • No API key, authentication, or FrankieOne account required