@joinmassive/mcp-server
OfficialAllows searching Google and retrieving structured results including organic listings, AI overview, and people also ask.
Allows querying the Perplexity AI chatbot for answers with sources.
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., "@@joinmassive/mcp-serverFetch https://news.ycombinator.com and summarize the top stories."
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.
@joinmassive/mcp-server
Official MCP server for the Massive Web Render API. Give your AI agents real-time web access — fetch any URL, search Google, query AI chatbots — with JS rendering, captcha solving, and 195+ country geo-targeting handled automatically.
Quickstart (Claude Desktop)
Option A — One-click install (.mcpb)
Download the latest
massive-mcp-X.Y.Z.mcpbfrom GitHub Releases.Open the file with Claude Desktop (or drag-drop into Settings → Extensions).
Paste your Massive API token when prompted. Token is stored in your OS keychain.
Option B — npx + config snippet
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"massive": {
"command": "npx",
"args": ["-y", "@joinmassive/mcp-server"],
"env": { "MASSIVE_TOKEN": "your-token-here" }
}
}
}Restart Claude Desktop.
Quickstart (Claude Code)
One command, works across all your projects:
claude mcp add massive --scope user -e MASSIVE_TOKEN=your-token-here -- npx -y @joinmassive/mcp-serverThen /mcp in any Claude Code session to confirm it's connected. Drop --scope user to scope it to the current project only.
Other MCP clients
The same JSON snippet works for any MCP-compatible client. Drop it into the client's config file:
Client | Config path |
Cursor |
|
Continue |
|
Cody |
|
Windsurf |
|
VS Code (MCP) |
|
If npx isn't on the client's PATH, swap to a direct binary path: "command": "node", "args": ["/absolute/path/to/dist/index.js"].
Getting an API token
Sign in at dashboard.joinmassive.com → Developer → API Keys.
Tools
web_fetch
Fetch any URL. Returns Markdown by default (best for LLMs).
Arg | Type | Default | Notes |
| string (required) | — | |
|
|
| |
| string (ISO 3166-1 alpha-2) | — | |
| string | — | |
| string | — | ISO 3166-2 (e.g. |
| string | — | Device emulation name |
| integer (0–365) | — | Days the cached result is reused. |
|
|
| Anti-bot evasion strength. Multipliers: |
Example prompt: "Use the Massive MCP server to fetch https://news.ycombinator.com and summarise the top stories."
web_search
Google search results, parsed into structured JSON.
Arg | Type | Default |
| string | — |
| string (ISO) | — |
| string | — |
| string | — |
| number | 10 |
| integer (0–365) | — |
| string | — |
| string | — |
Returns: { organic, ai_overview, people_also_ask, query }.
Example shape:
{
"query": "best espresso machines 2026",
"organic": [
{ "title": "...", "url": "https://...", "snippet": "..." }
],
"ai_overview": { "answer": "...", "sources": [{ "domain": "wirecutter.com", "url": "https://..." }] },
"people_also_ask": [
{ "question": "What is the best espresso machine for beginners?", "answer": "" }
]
}Example prompt: "Use web_search to find recent reviews of espresso machines and return the top 3 organic results plus the AI overview."
ai_chat_completion
Chatbot answer with sources.
Arg | Type | Default |
| string | — |
|
|
|
| string (ISO) | — |
| string | — |
| string | — |
| integer (0–365) | — |
| string | — |
| string | — |
| string | — |
Returns: { completion, sources, model, subqueries? }.
account_status
No args. Returns { credits_remaining }. Useful to warn the user before they run out of credits. Free — does not consume credits.
Pricing & cost control
Credit costs (live reference: https://joinmassive.com/pricing):
Endpoint | Base cost | Notes |
| 1 credit | Multipliers — |
| 1 credit | No multipliers |
| 1 credit | No multipliers |
| Free | — |
Worked example: web_fetch with difficulty=medium costs 1 × 2 = 2 credits.
Tips for keeping costs down
Cache:
expiration(days) reuses recent results. Default1. Setexpiration=0only when freshness matters (prices, scores, weather).Difficulty: start with default
low. Bump tomedium/highonly if the low attempt fails.Check first: call
account_status(free) before launching a batch.
Resources
This server exposes three read-only reference documents at docs:// URIs. They show up in your MCP client as attachable references:
URI | Contents |
| Credit costs and multipliers (same as the table above, inline in your client) |
| 190+ countries, subdivision/city format, examples |
| What's new in each release |
In Claude Desktop: open the Connectors panel and pick the resource from this server. In Claude Code: type @ and search by name. The model does not auto-read these — they're for you to browse.
Troubleshooting
"MASSIVE_TOKEN env var is not set"
Confirm the env block in your Claude Desktop config has the token. Restart Claude Desktop.
"Massive endpoint is autoscaling, please retry" A 503 from upstream. The server already retried once; wait ~10s and try again.
"403 Forbidden — the request was rejected (likely captcha or invalid token)" Either the target site rejected our captcha solver, or the token is invalid. Re-check the token at the dashboard.
No tools appear in Claude Desktop
Settings → Developer → check the MCP server logs. The most common cause is command: "npx" not being on Claude Desktop's PATH. Run which npx in Terminal — if it's under Homebrew (/opt/homebrew/bin), Claude Desktop's PATH won't include it. As a workaround, use a direct path: "command": "node", "args": ["/absolute/path/to/dist/index.js"]. Or install the .mcpb bundle (Option A above), which sidesteps PATH issues entirely.
Contributing
Issues and PRs welcome at github.com/joinmassive/mcp-server.
License
MIT. See LICENSE.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/joinmassive/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server