spider-data
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@spider-datasearch for "MCP server security best practices""
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
spider-data
Web search, fetch, and crawl for AI agents — a drop-in replacement for built-in
WebSearch/WebFetch, backed by the spider.cloud API.
Zero dependencies. One CLI, one MCP server, one skill file. Works with Claude Code, Codex, or anything that can run a subprocess or speak MCP.
spider-data search "postgres lock contention"
spider-data fetch "https://example.com/article"
spider-data crawl "https://docs.example.com" --limit 30Why spider.cloud, wired this way
Cost-effective. Every fetch starts on a free direct request and only reaches
the paid browser fleet on a confirmed block — a 403, a challenge page, an empty
render target. There is no "this looks off, try the expensive one" branch,
because that branch is how a web tool quietly runs up a bill. Results are cached
(24 h search, 7 d fetch), revalidation is free, and follow-up reads —
--section 3, --grep "timeout" — never cost anything. Each URL has a hard
2-paid-rung ceiling.
Reliable. Every outcome is a stable failure_code and a stable exit code, so
an agent branches on exit 4 instead of reading a sentence and guessing. Blocked
pages are detected structurally, not by vibes, so a short, Cloudflare-fronted,
perfectly fine page doesn't get reported as a wall. Rate limits and 5xx retry
with backoff and honour Retry-After. 184 tests, run on every publish.
Scalable. The cache is shared across runs and processes, so a fleet of agents researching the same topic pays once. A 14-day host memory learns which hosts always wall you and stops wasting the free rung on them — it can never add a paid call, only skip a doomed free one. Long pages return an outline plus a budgeted excerpt, so a big crawl doesn't blow up anyone's context window.
Related MCP server: superhighway-mcp
Install
Requires Node ≥20 or Bun. Nothing else.
git clone https://github.com/MirandaKim1434/spider-data
cd spider-data
npm link # or: ln -s "$PWD/bin/spider-data.js" ~/.local/bin/spider-data
SPIDER_API_KEY_INPUT=<your-key> spider-data auth login # stores in the OS keychain
spider-data doctorAs a Claude Code skill
ln -s "$PWD/skill" ~/.claude/skills/spider-dataThen disable the built-ins in ~/.claude/settings.json, so there is one way to
reach the web rather than two:
{
"permissions": {
"deny": ["WebSearch", "WebFetch"],
"allow": ["Bash(spider-data:*)"]
}
}As an MCP server
{ "mcpServers": { "spider-data": { "command": "node", "args": ["/path/to/spider-data/src/mcp.js"] } } }Exposes web_search, web_fetch, and web_crawl. See adapters/ for
host-specific notes.
Commands
spider-data search <query> spider-data cache {stats|clear|purge <url>}
spider-data fetch <url> spider-data stats [--since 7d]
spider-data crawl <url> spider-data doctor
spider-data auth {login|status}Everywhere: --json for one machine-readable object, --refresh to ignore a
cached copy, --debug to attach a redacted response snippet to errors.
Command | Flags |
|
|
|
|
|
|
Full list: spider-data --help.
Exit codes
Code | Meaning | Code | Meaning | |
0 | Success (incl. an empty match) | 6 | Transient | |
2 | Usage error | 7 | API key rejected | |
3 | Cross-site redirect, not followed | 8 | No credit remaining | |
4 | Target refuses anonymous access | 9 | Rate limited | |
5 | Target does not exist | 10 | Refused by local policy |
Watching the spend
spider-data stats --since 7dpaid: true in the audit log means a request actually left the machine. Cache
hits and free revalidations are never counted as paid, because the only function
that can mark an attempt paid lives inside the function that opens the socket.
Security
The package holds an API key, so: it is never written into process.env, never
read from a .env found by walking up the tree, and never allowed into an error
message — any upstream can echo your request headers back at you. One redactor
guards every write to stdout, stderr, the cache, and the log, and
test/leak.test.js proves it against a server built to reflect headers back.
DNS is resolved and every address checked against the full private and reserved ranges before any request, so the paid API can't be used as an SSRF relay. robots.txt is honoured by default.
Tests
npm test # or: bun test/run.js
npm run leakcheck # the key-leak suite on its own184 tests, no network and no API key required. npm test also runs on publish.
More
docs/DESIGN.md covers how blocked pages are told apart from
short ones, and what the package assumes rather than verifies.
Licence
MIT © Miranda Olson. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceAn MCP server that provides web search and URL fetching capabilities by delegating execution to an EnriProxy server. It enables AI agents to perform structured web searches and retrieve content with support for filtering, recency limits, and pagination.292AGPL 3.0
- AlicenseAqualityBmaintenanceAn MCP server that provides real-time web search to AI agents via a pay-per-search USDC microtransaction system.5262MIT
- Alicense-qualityAmaintenanceUnlimited web access MCP server for AI agents, enabling search, fetch, and learning across multiple sources while bypassing anti-bot protections.MIT
- AlicenseBqualityDmaintenanceMCP server for the Spider web crawling and scraping API, enabling AI agents to crawl, scrape, search, and extract web data.13542MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
SEO MCP server: crawl your site, find AI-visibility gaps, and ship the fix from your coding agent.
MCP server for Google search results via SERP API
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MirandaKim1434/spider-data'
If you have feedback or need assistance with the MCP directory API, please join our Discord server