Docs MCP
Docs MCP
Section titled “Docs MCP”We also have a MCP server that allows you to search the Varlock docs. Yes, this getting a bit meta.
The MCP server is available at:
- https://docs.mcp.varlock.dev/mcp (Streamable HTTP)
- https://docs.mcp.varlock.dev/sse (Server-Sent Events)
See below for tool-specific setup instructions.
Click below to install the MCP server in Cursor:
Or add the following to your .cursor/mcp-servers.json file:
{ "mcpServers": { "varlock-docs-mcp": { "command": "npx", "args": ["mcp-remote", "https://docs.mcp.varlock.dev/mcp"] } }}To add a server in Claude Code, run the following command. Use --scope user so the server is available in all Claude Code sessions; without it, the install applies to the current project only.
claude mcp add --scope user --transport http varlock-docs-mcp https://docs.mcp.varlock.dev/mcpSee Claude’s documentation for more information.
To add the Varlock docs MCP server in Codex, run:
codex mcp add varlock-docs-mcp --url https://docs.mcp.varlock.dev/mcpTo add a remote MCP server in Opencode, add the following to your opencode.json file:
{ "$schema": "https://opencode.ai/config.json", "mcp": { "varlock-docs-mcp": { "type": "remote", "url": "https://docs.mcp.varlock.dev/mcp", "enabled": true, } }}See Opencode’s documentation for more information.
To add a remote MCP server in VS Code, add the following to your .vscode/mcp.json file:
{ "servers": { "varlock-docs-mcp": { "type": "http", "url": "https://docs.mcp.varlock.dev/mcp" } }}See VS Code’s documentation for more information.