AI Tools
Ory provides tools to help AI coding assistants query Ory documentation and work effectively with Ory codebases.
Ory Docs MCP Server
The Ory Docs MCP server lets AI assistants query Ory's documentation directly. Connect it to your AI tool of choice using the instructions below.
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
Add the following to your Claude Desktop configuration:
{
"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:
{
"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
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"
}
}
}
Ory Claude Plugins
The Ory Claude Plugins repository is the official Claude Code plugin marketplace for Ory. Install it in Claude Code with:
/plugin marketplace add ory/claude-plugins
This gives you access to all Ory plugins for Claude Code, including Lumen (see below).
Lumen
Lumen is a fully local semantic code search engine for AI coding agents. Instead of reading entire files, Claude uses Lumen's semantic_search tool to find relevant functions and types by meaning — reducing cost and session time without sacrificing quality.
Install via the Ory Claude Plugins:
/plugin marketplace add ory/claude-plugins
/plugin install lumen@ory
On first session start, Lumen indexes your project in the background and registers a semantic_search MCP tool that Claude uses automatically.
Prerequisites: Ollama installed and running with the default embedding model:
ollama pull ordis/jina-embeddings-v2-base-code
Key results across 8 languages and real GitHub bug-fix tasks:
| Metric | Improvement |
|---|---|
| Cost (avg) | -26% |
| Session time (avg) | -28% |
| Output tokens (avg) | -37% |
| Patch quality | Maintained in all tasks |
See the Lumen repository for benchmarks, configuration, and supported languages.