scout
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., "@scoutfetch https://en.wikipedia.org/wiki/Zettelkasten"
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
The agent's web reader.
Raw HTML is a terrible thing to feed a model β a 380 KB Wikipedia page is ~95k tokens of markup for a few KB of prose. scout fetches a URL and gives back clean, readable markdown (headings, links, code, lists β the substance, none of the chrome), typically ~90% smaller than the HTML. Every page is cached, so re-reading is free and your whole reading history is searchable.
Part of tools-for-agents. Zero dependencies β Node's built-in fetch + a regex "readability-lite" extractor + node:sqlite (FTS5). Pairs naturally with cortex: scout clips the web, cortex files it into your second brain.
Why
Without scout | With scout |
Feed raw HTML to the model β ~95k tokens of |
|
Re-fetch the same page every time you need it | Cached β re-reads are free ( |
"What did that article say about X?" β fetch again, re-read |
|
No memory of what you've researched | A searchable reading history on disk |
Related MCP server: superFetch MCP Server
CLI
scout fetch https://en.wikipedia.org/wiki/Zettelkasten # β clean markdown (cached)
scout fetch https://example.com/post --tokens 3000 # cap the returned size
scout fetch https://api.example.com/data.json --raw # skip extraction
scout search "luhmann note linking" -k 5 # search your reading history
scout links https://news.ycombinator.com --limit 30 # outbound links to crawl next
scout list | scout forget https://old.example.com | scout statsCache location: $SCOUT_DB (default ./.scout/cache.db).
MCP server (for agents)
{
"mcpServers": {
"scout": { "command": "node", "args": ["/abs/path/to/scout/mcp/mcp-server.js"],
"env": { "SCOUT_DB": "/abs/path/to/.scout/cache.db" } }
}
}Tools
Tool | Use it to⦠|
| Read a web page as clean, token-budgeted markdown (cached; |
| Search every page you've already read β ranked snippets, no re-fetch. |
| Extract a page's outbound links (absolute URLs + text) to decide where to go next. |
| Your recent reading history. |
| Drop a page from the cache. |
| Pages cached, bytes stored, last fetch. |
The research loop (with cortex)
scout_fetchthe page β clean markdown.scout_searchyour history to connect it to what you've already read.cortex_capturethe useful parts into your second brain, thencortex_writedistilled,[[linked]]notes.Next time,
cortex_search/scout_searchrecall it instead of fetching the web again.
How it works
Fetch uses Node's global
fetch(follows redirects, 20 s timeout, a plain user-agent).Extraction is regex-based readability-lite: strip
<script>/<style>/<nav>/<footer>/β¦, pick the densest<article>/<main>/<body>region, convert headings, links (resolved to absolute), code, lists, bold/italic, and decode HTML entities. Not a full DOM parse β but it reliably turns an article into readable prose at a fraction of the tokens.Cache is a
node:sqlitetable keyed by URL; the same URL returns instantly unlessfresh. An FTS5 mirror makes the whole history searchable by bm25, filled to a token budget (β4 chars/token) β the same discipline aslensandcortex.Non-HTML responses (JSON, plain text) are stored verbatim.
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.
Latest Blog Posts
- 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/tools-for-agents/scout'
If you have feedback or need assistance with the MCP directory API, please join our Discord server