Install drillable

A reference gateway your agent calls — it drills a real, cited source for what holds up, and says so when it can't. No auth.

No account, API key, or OAuth — just the URL.

The endpoint

https://mcp.drillable.com

Fastest: paste this into Claude or ChatGPT

Paste the line below into your agent — it will fetch this page and walk you through adding drillable in your client:

Install this MCP server: https://mcp.drillable.com — a no-auth reference gateway over cited corpora (verified where marked). Walk me through adding it in my client.

Claude Code (CLI)

claude mcp add --transport http drillable https://mcp.drillable.com

Claude.ai (web / desktop)

  1. Settings → Connectors → Add custom connector
  2. Paste https://mcp.drillable.com
  3. Click Add — no authentication needed

ChatGPT

  1. Settings → Connectors (enable Developer Mode if needed)
  2. Add a connector and paste https://mcp.drillable.com

Cursor / VS Code (one click)

Add to Cursor Add to VS Code

Or in VS Code: code --add-mcp '{"name":"drillable","type":"http","url":"https://mcp.drillable.com"}'

OpenAI Codex (CLI)

Add to ~/.codex/config.toml (or .codex/config.toml to scope it to one project) — url is the remote/HTTP form, command is for local stdio servers:

[mcp_servers.drillable]
url = "https://mcp.drillable.com"

Windsurf (Cascade)

Edit ~/.codeium/windsurf/mcp_config.json — note the key is serverUrl — then restart Windsurf:

{ "mcpServers": { "drillable": { "serverUrl": "https://mcp.drillable.com" } } }

Zed

In settings.json, under the context_servers key:

{ "context_servers": { "drillable": { "url": "https://mcp.drillable.com" } } }

JetBrains AI Assistant

{ "mcpServers": { "drillable": { "url": "https://mcp.drillable.com" } } }

Cline

MCP Servers → Remote Servers → Transport Type Streamable HTTP, paste https://mcp.drillable.com. Or edit the JSON directly:

{ "mcpServers": { "drillable": { "url": "https://mcp.drillable.com" } } }

Any other MCP client

It's a standard streamable-HTTP server with no auth. Point your client at https://mcp.drillable.com — most infer the transport from the URL; if yours needs a type, use http (some clients call it streamable-http). No bridge or proxy required.