Configure the OneID Documentation MCP

Overview

The OneID Documentation MCP server provides a search tool that lets AI assistants answer questions using the OneID docs. No login is needed.


Prerequisites

  • Node.js (v18+) Check: node --version and npx --version


Cursor

  1. Open Cursor → Settings (⌘/Ctrl + ,) → MCP, or edit ~/.cursor/mcp.json directly.

  2. Add the OneID docs server to your MCP config. If you already have other servers, add oneid-docs under mcpServers:

{ "mcpServers": { "oneid-docs": { "command": "npx", "args": [ "-y", "mcp-remote", "https://docs.oneid.uk/mcp", "--transport", "http-only" ] } } }
  1. Save the file and restart Cursor.

  2. In a chat, ask a question about OneID (e.g. “How do I integrate bank verification?”). Cursor will use the OneID docs via the MCP server.


Claude Desktop

  1. Open your Claude Desktop config:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

    • Windows: %APPDATA%\Claude\claude_desktop_config.json

  2. Add this under mcpServers:

{ "mcpServers": { "oneid-docs": { "command": "npx", "args": [ "-y", "mcp-remote", "https://docs.oneid.uk/mcp", "--transport", "http-only" ] } } }
  1. Save and restart Claude Desktop.

  2. In Claude, you can now ask OneID-related questions and it will use the docs server.


Verify It’s Working

In your AI tool, try:

  • “What is OneID and how does it work?”

  • “How do I integrate OneID Sign-in?”

  • “What attributes can I request from the bank verification API?”

If you get answers with references to OneID docs (including links), the MCP server is working.


Other MCP clients

If you use another MCP-compatible client, configure an HTTP/SSE MCP server with:

  • URL: https://docs.oneid.uk/mcp

  • Transport: HTTP-only (SSE or HTTP stream)