How to
“start using mcp.onelore.ai”
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"
}
}
}Reload the VS Code window after saving. Copilot will prompt you to start the Lore MCP server. 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.
Windsurf
OAuth via Google. Note: Windsurf uses "serverUrl", not "url".
{
"mcpServers": {
"lore": {
"serverUrl": "https://mcp.onelore.ai"
}
}
}Zed
OAuth via Google. Zed uses "context_servers", not "mcpServers".
{
"context_servers": {
"lore": {
"url": "https://mcp.onelore.ai"
}
}
}Open Zed → Settings → Open Settings, then merge the snippet into your existing settings file.
JetBrains (IntelliJ, WebStorm, PyCharm…)
OAuth via Google. GUI configuration. Requires a JetBrains AI subscription.
Open Settings → Tools → AI Assistant → MCP Servers, click Add, choose Streamable HTTP, and paste the MCP URL. You can also import an existing Claude Desktop config from the same dialog.
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.
