Guide
Turbodoc exposes your entire library — bookmarks, notes, code snippets, and diagrams — through a hosted MCP (Model Context Protocol) server. This guide walks through setup for each major client.
You need a free Turbodoc account — sign up here. That's it. Authentication happens through OAuth 2.0: the first time your client connects, a browser window opens where you sign in and approve access. There are no API keys.
The server endpoint for every client is:
https://api.turbodoc.ai/mcpTurbodoc tools then appear in Claude's tool menu for every conversation where the connector is enabled.
Run this in your terminal:
claude mcp add --transport http turbodoc https://api.turbodoc.ai/mcpThen inside a Claude Code session, run /mcp and follow the authentication prompt. Add --scope user to the command above to make the server available in every project.
Add this to ~/.cursor/mcp.json (global) or .cursor/mcp.json in a project:
{
"mcpServers": {
"turbodoc": {
"url": "https://api.turbodoc.ai/mcp"
}
}
}Cursor detects the change, shows Turbodoc under Settings → MCP, and opens the OAuth sign-in when the server is first used.
Run the MCP: Add Server command from the command palette, choose HTTP, and paste the endpoint. Or add it to .vscode/mcp.json:
{
"servers": {
"turbodoc": {
"type": "http",
"url": "https://api.turbodoc.ai/mcp"
}
}
}Add this to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"turbodoc": {
"serverUrl": "https://api.turbodoc.ai/mcp"
}
}
}npx mcp-remote https://api.turbodoc.ai/mcp.The server exposes 22 tools covering full create, read, update, and delete operations on bookmarks, notes, code snippets, and diagrams, plus tag listing and batch operations. See the complete tool catalog.
Turbodoc is free while in beta — and 100% open source.
Create your free account