Docs MCP

Use PlainKey's MCP Server to easily make your AI assistant read and understand our documentation.

Author: PlainKey

What is MCP?

MCP (Model Context Protocol) is an open-source standard for connecting AI applications to external systems.

Using MCP, AI applications like ChatGPT, Cursor and Claude Code and others can connect to data sources, tools and workflows. It enables them to access key information and perform tasks.

What is PlainKey Docs MCP?

PlainKey Docs MCP is an MCP server that allows your AI assistant to read and understand PlainKey's documentation and articles. This way, it can assist you with setting up PlainKey for your web app.

It has access to all documentation pages and articles on plainkey.io.

ChatGPT Setup

Follow these steps to set up PlainKey Docs as a connector within ChatGPT:

  1. Enable Developer mode:
  • Go to "Settings" > "Connectors" > "Advanced settings" > "Developer mode"
  1. Open ChatGPT settings
  2. In the Connectors tab, create a new connector:
  • Give it a name: PlainKey Docs MCP
  • Description: Provides documentation for PlainKey, a passkey authentication service
  • MCP server URL: https://docs-mcp.plainkey.io/mcp
  • Authentication: None
  1. Click Create

You can now ask ChatGPT to help you with setting up PlainKey for your project.

If ChatGPT says it doesn't have access, try clicking the + in the chat -> More -> PlainKey Docs to make ChatGPT aware you specifically want to use that connector.

Claude Code Setup

Add the server using the CLI command:

claude mcp add --transport http plainkey-docs-mcp https://docs-mcp.plainkey.io/mcp

Claude Desktop Setup

  1. Open Claude Desktop and navigate to "Settings" > "Developer".
  2. Click on "Edit Config". This will open the local Claude directory.
  3. Modify the claude_desktop_config.json file with your custom MCP server configuration.
{
  "mcpServers": {
    "plainkey-docs": {
      "command": "npx",
      "args": ["mcp-remote", "https://docs-mcp.plainkey.io/mcp"]
    }
  }
}
  1. Restart Claude Desktop app. The PlainKey Docs MCP server should now be registered.

Cursor Setup

  1. Open Cursor and go to "Settings" > "Tools & MCP"
  2. Click "New MCP Server"
  3. Add the following configuration to the JSON file:
{
  "mcpServers": {
    "plainkey-docs": {
      "type": "http",
      "url": "https://docs-mcp.plainkey.io/mcp"
    }
  }
}

Other AI assistants

Different AI assistants have different ways of adding MCP servers. We recommend using the official documentation for your specific assistant.

The URL to PlainKey Docs MCP is https://docs-mcp.plainkey.io/mcp. It uses http transport.