Ory Docs MCP Server
The Ory Docs MCP (Model Context Protocol) server gives AI assistants direct access to Ory documentation, enabling more accurate and context-aware answers to your questions.
MCP is an open protocol that allows AI tools to query external knowledge sources. Once configured, your AI assistant can search and retrieve Ory documentation in real time.
Server URL: https://ory-docs.mcp.kapa.ai
Cursor
Add the following to your .cursor/mcp.json file:
{
"mcpServers": {
"ory-docs": {
"type": "http",
"url": "https://ory-docs.mcp.kapa.ai"
}
}
}
For more information, see the Cursor MCP documentation.
Claude Code
claude mcp add --transport http ory-docs https://ory-docs.mcp.kapa.ai
Then run the /mcp command in Claude Code and follow the steps in your browser to authenticate.
For more information, see the Claude Code MCP documentation.
Claude Desktop
{
"mcpServers": {
"ory-docs": {
"command": "npx",
"args": ["mcp-remote", "https://ory-docs.mcp.kapa.ai"]
}
}
}
VS Code
Prerequisites: VS Code 1.102+ with GitHub Copilot enabled.
Create an mcp.json file in your workspace .vscode folder:
.vscode/mcp.json
{
"servers": {
"ory-docs": {
"type": "http",
"url": "https://ory-docs.mcp.kapa.ai"
}
}
}
For more details, see the VS Code MCP documentation.
ChatGPT Desktop
ChatGPT Desktop supports MCP servers in developer mode:
- Open ChatGPT Desktop.
- Go to Settings > Features.
- Enable Developer mode.
- Navigate to Settings > MCP Servers.
- Click Add Server and enter:
- Name:
ory-docs - URL:
https://ory-docs.mcp.kapa.ai
- Name:
For more information, see the ChatGPT Desktop MCP documentation.
Other clients
MCP is an open protocol supported by many clients. Use the server URL https://ory-docs.mcp.kapa.ai and refer to your client's
documentation for setup instructions.
Most clients accept the standard MCP JSON configuration format:
{
"mcpServers": {
"ory-docs": {
"url": "https://ory-docs.mcp.kapa.ai"
}
}
}