How to
“read mcp.onelore.ai and set it up as an MCP server”
paste this into your chat and follow its lead. Simple as that. Sign in with Google when prompted, then you're ready to begin.
Handcraft
Claude Desktop
OAuth via Google, no config file needed.
Open Settings → Connectors → Add. Paste the MCP URL above and confirm. Claude Desktop will open a Google sign-in window the first time you use a Lore tool.
Claude Code (CLI)
OAuth via Google. One command, available in every project.
claude mcp add --transport http lore https://mcp.onelore.aiVS Code (GitHub Copilot)
OAuth via Google. Note: VS Code uses "servers", not "mcpServers".
{
"servers": {
"lore": {
"type": "http",
"url": "https://mcp.onelore.ai"
}
}
}VS Code picks the file up immediately — click Start above the server entry, Allow the auth prompt, and finish the Google sign-in. Lore's tools appear in Chat's Agent mode under the wrench icon. For all projects, add the same entry via the User MCP Configuration command instead.
Cursor
OAuth via Google. Per-project or global.
{
"mcpServers": {
"lore": {
"url": "https://mcp.onelore.ai"
}
}
}Place at the project root, or at ~/.cursor/mcp.json to enable Lore everywhere. Open Cursor Settings → Tools & MCP and click Connect next to Lore.
Cline (VS Code)
OAuth via Google. Connects before any model or provider is configured.
Open Cline's MCP Servers panel → Remote Servers tab. Name it lore, paste the MCP URL above, keep the transport on Streamable HTTP, and click Add Server. When the server reports it requires authentication, click Authenticate to finish the Google sign-in. Editing config JSON by hand instead? Set "type": "streamableHttp" explicitly — omitting it silently falls back to SSE.
Devin Desktop (formerly Windsurf)
OAuth via Google. Windsurf became Devin Desktop in June 2026 — the commands below set up its default Devin Local agent.
devin mcp add lore https://mcp.onelore.ai
devin mcp login lorePrefer a file? Add the server to ~/.config/devin/config.json under "mcpServers" with "url" and "transport": "http". On the legacy Cascade agent (retiring after July 2026), ~/.codeium/windsurf/mcp_config.json with a "serverUrl" or "url" field still works — OAuth starts automatically when the server is added.
Zed
OAuth via Google. Zed uses "context_servers", not "mcpServers".
{
"context_servers": {
"lore": {
"url": "https://mcp.onelore.ai"
}
}
}Zed picks the change up instantly. Open Settings → AI → MCP Servers: lore appears with a warning badge — click Authenticate and finish the Google sign-in. A green dot means the server is active.
JetBrains (IntelliJ, WebStorm, PyCharm…)
Via the mcp-remote bridge — AI Assistant reaches remote MCP servers but doesn't speak MCP OAuth yet. Any AI tier; needs Node.js for npx.
{
"mcpServers": {
"lore": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.onelore.ai"]
}
}
}Open Settings → Tools → AI Assistant → Model Context Protocol (MCP), click Add, switch to the As JSON view, and paste the snippet. The first connection opens Google sign-in in your browser. Plain-URL entries work only with static tokens today; once JetBrains ships MCP OAuth for AI Assistant, this simplifies to just the MCP URL.
Gemini CLI
OAuth via Google. Lives in Gemini's extensions folder.
{
"name": "lore",
"version": "1.0.0",
"mcpServers": {
"lore": {
"httpUrl": "https://mcp.onelore.ai"
}
}
}Gemini Code Assist (VS Code)
OAuth via Google. Uses "httpUrl" for streamable HTTP.
{
"mcpServers": {
"lore": {
"httpUrl": "https://mcp.onelore.ai"
}
}
}OpenAI Codex CLI
OAuth via Google. Two commands.
codex mcp add lore --url https://mcp.onelore.ai
codex mcp login loreMistral Le Chat
OAuth via Google. Free tier eligible. GUI add-by-URL — no config file.
Open the sidebar → Intelligence → Connectors. Click + Add Connector and switch to the Custom MCP Connector tab. Paste the MCP URL above (connector name: lore, no spaces) and click Connect — Mistral auto-detects OAuth and walks you through Google sign-in.
ChatGPT
OAuth via Google. Requires ChatGPT Plus, Pro, Business, Enterprise, or Edu — Free and Go don't expose Developer Mode.
Open Settings → Apps → Advanced and enable Developer Mode (currently in beta). Then click Create app, paste the MCP URL above, and finish the setup. The first call to a Lore tool triggers a Google sign-in window.
After setup, ask your ai to call lore_whoami to confirm the connection.
