Connect Cursor / VS Code
Add Lore DB to your IDE so your AI assistant can access your team’s documentation while you code.
Cursor
1
Open MCP settings
Go to Settings > MCP or open .cursor/mcp.json in your project root.
2
Add the server config
Add the following:
.cursor/mcp.json
{
"mcpServers": {
"lore-db": {
"url": "https://loredb.dev/mcp"
}
}
} 3
Restart Cursor
Restart Cursor, and your Lore DB tools will appear when Claude helps you code.
VS Code
VS Code with the Claude extension supports MCP servers using the same configuration format. Create or edit .vscode/mcp.json in your project:
.vscode/mcp.json
{
"mcpServers": {
"lore-db": {
"url": "https://loredb.dev/mcp"
}
}
} Add the MCP config to your project’s .cursor/ or .vscode/ directory and commit it. Everyone on the team gets the connection automatically.