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:
- Enable Developer mode:
- Go to "Settings" > "Connectors" > "Advanced settings" > "Developer mode"
- Open ChatGPT settings
- 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
- 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
- Open Claude Desktop and navigate to "Settings" > "Developer".
- Click on "Edit Config". This will open the local Claude directory.
- Modify the
claude_desktop_config.jsonfile with your custom MCP server configuration.
{
"mcpServers": {
"plainkey-docs": {
"command": "npx",
"args": ["mcp-remote", "https://docs-mcp.plainkey.io/mcp"]
}
}
}
- Restart Claude Desktop app. The PlainKey Docs MCP server should now be registered.
Cursor Setup
- Open Cursor and go to "Settings" > "Tools & MCP"
- Click "New MCP Server"
- 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.