streamable-httpMITupdated 1mo ago
Route HTTP requests through the Tor network from any MCP-compatible agent.
What can you do with tor mcp?
tor-mcp
Route HTTP requests through the Tor network from any MCP-compatible agent.
Live at tor.regiq.in · Free forever · Google sign-in
What it does
Gives Claude Desktop / Cursor / any MCP client four tools:
| Tool | What it does |
|---|---|
tor_fetch(url, method?, headers?, body?) |
HTTP request through Tor; returns status/headers/body |
tor_get_exit_ip() |
Current exit node IP + country (verified via check.torproject.org) |
tor_new_circuit() |
Force a fresh Tor circuit (SIGNAL NEWNYM) |
tor_check(url) |
HEAD probe — is target reachable through Tor? |
Honest scope
Tor exit nodes are blocked by Cloudflare on most big-brand sites (Indeed, Google, Amazon, etc.). Use tor-mcp for:
- Non-Cloudflare sites
- Geo-hidden fetches (see a site from a random country)
.onionservices- IP-based rate-limit circumvention on APIs that don't blocklist Tor
- Testing your own site from N different exits
If you need to hit Cloudflare-protected sites, use browser-mcp instead — real Chrome from a fixed Hetzner IP works for most WAFs, and you can layer a residential proxy on top for the rest.
Setup
- Sign in with Google at tor.regiq.in
- Generate an MCP API key on your dashboard
- Add to Claude Desktop / Cursor:
{
"mcpServers": {
"tor": {
"url": "https://tor.regiq.in/api/mcp",
"headers": {
"Authorization": "Bearer <YOUR_KEY>"
}
}
}
}
Limits (per API key, free tier)
- 100 requests/day
- 30s timeout per request
- 10 MB response body cap
- Methods: GET, POST, HEAD only
Higher quotas for aggregators — email shreyas.pavuluri@gmail.com.
Privacy
- DNS resolves inside Tor (
socks5h://scheme) — no plaintext lookup from our host - We log: target host, method, response status, duration, size
- We never log: full URLs, query strings, request bodies, response bodies, cookies, headers
- Standard TorBrowser User-Agent sent by default
Self-host
git clone https://github.com/globalion/tor-mcp
cd tor-mcp
cp .env.example .env # fill in
docker compose up -d --build
Then browse to http://localhost:3021.
License
Install
Add tor mcp to your client. Pick the one you use.
claude mcp add --transport http tor-mcp https://tor.regiq.in/api/mcpcodex mcp add tor-mcp --url https://tor.regiq.in/api/mcp{
"mcpServers": {
"tor-mcp": {
"url": "https://tor.regiq.in/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"tor-mcp": {
"type": "http",
"url": "https://tor.regiq.in/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"tor-mcp": {
"url": "https://tor.regiq.in/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"tor-mcp": {
"serverUrl": "https://tor.regiq.in/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance16/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 46 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Jul 17, 2026 |