Hosted MCP: 319 structured web-data tools for search, maps, commerce, social & finance.
MCPpedia last refreshed this data
net.crawlora/crawlora-mcp is an MCP server that hosted MCP: 319 structured web-data tools for search, maps, commerce, social & finance. Its tool list has not been published yet, requires no API key, and scores 83/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"crawlora": {
"url": "https://mcp.crawlora.net/mcp",
"headers": {
"Authorization": "Bearer YOUR_CRAWLORA_API_KEY"
},
"transport": "streamable-http"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Crawlora MCP is a hosted Model Context Protocol server that gives AI clients and agents 439 structured public‑web‑data tools across 30+ categories — search, maps, e‑commerce, social, finance, travel, app stores, media, and reviews — each returning clean, normalized JSON instead of HTML to parse.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'crawlora-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked crawlora-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser
Chrome DevTools for coding agents
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP server paired with a browser extension that enables AI agents to control the user's browser.
MCP Security Weekly
Get CVE alerts and security updates for net.crawlora/crawlora-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Crawlora MCP is a hosted Model Context Protocol server that gives AI clients and agents 1407 structured public‑web‑data tools across 153 platform groups — search, maps, e‑commerce, social, finance, travel, app stores, media, and reviews — each returning clean, normalized JSON instead of HTML to parse.
Two ways to use it: connect any MCP client to the hosted endpoint (
https://mcp.crawlora.net/mcp), or run the small open‑source local server in this repo (npx/ Docker, stdio) — both expose the same tools and authenticate with your Crawlora API key. Start free with 2,000 credits/month (no card) at crawlora.net.
| Endpoint | https://mcp.crawlora.net/mcp |
| Transport | Streamable HTTP |
| Auth | Authorization: Bearer <CRAWLORA_API_KEY> (preferred) — x-api-key: <key> also accepted |
| Get a key | https://crawlora.net (free 2,000 credits/mo) |
| Server card | https://crawlora.net/.well-known/mcp/server-card.json |
A missing or invalid API key returns 401.
Crawlora MCP works with any MCP‑capable client. Pick yours below — they all point at the same
hosted endpoint (https://mcp.crawlora.net/mcp, Streamable HTTP) and authenticate with your
CRAWLORA_API_KEY. Prefer keeping the key in an environment variable over pasting it literally,
and never commit it. Ready‑to‑paste files for each client live in examples/.
claude mcp add --transport http crawlora https://mcp.crawlora.net/mcp \
--header "Authorization: Bearer ${CRAWLORA_API_KEY}"
Adds at local scope by default. Use --scope user to make it available in every project, or
--scope project to write a shared .mcp.json. Confirm with claude mcp list.
Settings → Developer → Edit Config, then add to claude_desktop_config.json:
{
"mcpServers": {
"crawlora": {
"url": "https://mcp.crawlora.net/mcp",
"transport": "streamable-http",
"headers": { "Authorization": "Bearer YOUR_CRAWLORA_API_KEY" }
}
}
}
Project‑local .cursor/mcp.json (or ~/.cursor/mcp.json for all projects):
{
"mcpServers": {
"crawlora": {
"url": "https://mcp.crawlora.net/mcp",
"headers": { "Authorization": "Bearer ${CRAWLORA_API_KEY}" }
}
}
}
codex mcp add crawlora \
--url https://mcp.crawlora.net/mcp \
--bearer-token-env-var CRAWLORA_API_KEY
.vscode/mcp.json (project) or your user mcp.json:
{
"servers": {
"crawlora": {
"type": "http",
"url": "https://mcp.crawlora.net/mcp",
"headers": { "Authorization": "Bearer ${env:CRAWLORA_API_KEY}" }
}
}
}
~/.codeium/windsurf/mcp_config.json (note the serverUrl key):
{
"mcpServers": {
"crawlora": {
"serverUrl": "https://mcp.crawlora.net/mcp",
"headers": { "Authorization": "Bearer ${env:CRAWLORA_API_KEY}" }
}
}
}
`~/.gemini/setting