Scout MCP Server
OfficialClick 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., "@Scout MCP ServerSearch the web for the latest on the EU AI Act and summarize the top 5 sources."
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.
Scout MCP Server
Give your coding agent the live web. Scout's MCP server adds web search, scraping to Markdown, structured extraction, crawling, screenshots, and company lookup as tools any MCP client can call: Claude Code, Codex, Gemini CLI, Antigravity, Cursor, Windsurf, and Claude Desktop.
It has zero dependencies — the MCP protocol is implemented in a few hundred lines of plain JavaScript, with no build step and nothing pulled from npm at install time. When you run it, the only code that runs is the code in this repo. See SECURITY.md.
Tools
Tool | What it does |
| Search the live web; ranked results as JSON. |
| Fetch a page as clean, LLM-ready Markdown (handles JS + bot defenses). |
| Pull structured data from one or more URLs against an objective. |
| Crawl a site from a start URL, bounded by |
| Capture a page screenshot. |
| Company profile from a domain (name, industry, socials, logo). |
| Answer a question by reading a page and the pages it links to. |
| Build a list of entities matching a natural-language query. |
Related MCP server: Crawl4AI RAG MCP Server
Get a key
Create an API key at platform.usescout.sh/settings and set it as SCOUT_API_KEY. Every example below uses npx, so there's nothing to install first.
Install per client
Claude Code
claude mcp add scout --env SCOUT_API_KEY=sk_your_key -- npx -y @scout-ai/mcpCodex CLI
Add to ~/.codex/config.toml:
[mcp_servers.scout]
command = "npx"
args = ["-y", "@scout-ai/mcp"]
env = { SCOUT_API_KEY = "sk_your_key" }Gemini CLI
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"scout": {
"command": "npx",
"args": ["-y", "@scout-ai/mcp"],
"env": { "SCOUT_API_KEY": "sk_your_key" }
}
}
}Antigravity
In the MCP settings, add a server with this config (or paste it into the MCP config file):
{
"mcpServers": {
"scout": {
"command": "npx",
"args": ["-y", "@scout-ai/mcp"],
"env": { "SCOUT_API_KEY": "sk_your_key" }
}
}
}Cursor
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"scout": {
"command": "npx",
"args": ["-y", "@scout-ai/mcp"],
"env": { "SCOUT_API_KEY": "sk_your_key" }
}
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"scout": {
"command": "npx",
"args": ["-y", "@scout-ai/mcp"],
"env": { "SCOUT_API_KEY": "sk_your_key" }
}
}
}Claude Desktop
Add to claude_desktop_config.json (Settings → Developer → Edit Config) using the same mcpServers block as above.
Use it
Once connected, ask your agent things like:
"Search the web for the latest on the EU AI Act and summarize the top 5 sources."
"Scrape https://example.com/pricing and pull the plan names and prices."
"Look up stripe.com and tell me their industry and socials."
The agent picks the right Scout tool and calls it.
Progress on long jobs
scout_search with depth: "deep" runs an agentic multi-step search server-side. The server streams Scout's run events and forwards them as MCP progress notifications, so clients that show progress (Claude Code, Cursor) display live updates instead of a frozen spinner. The final results come back when the run finishes.
Hosted HTTP/SSE transport
Besides stdio, the server can run over HTTP using MCP's Streamable HTTP transport, so a remote client can connect by URL:
SCOUT_API_KEY=sk_your_key npx -y -p @scout-ai/mcp scout-mcp-http
# listening on :3000/mcpVariable | Default | Purpose |
|
| Listen port. |
|
| Endpoint path. |
| (none) | If set, clients must send |
Point an MCP client at http://your-host:3000/mcp. There's a /health endpoint for load balancers. Each request is stateless (a fresh server per request), which keeps it simple to run behind any HTTP front end.
Configuration
Variable | Default | Purpose |
| (required) | Your Scout API key. |
|
| Override the API origin. |
Run from source
No install, no build (zero dependencies):
SCOUT_API_KEY=sk_your_key node bin/scout-mcp.js # stdio
SCOUT_API_KEY=sk_your_key node bin/scout-mcp-http.js # hosted HTTP/SSE
node test/smoke.mjs # run the protocol testLicense
Maintenance
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/Scout-AI-Labs/scout-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server