Usage
This is the canonical end-user flow for mcp-searchable.
Workflow: Search → Fetch → Stash → Grep → Ask
1) Search
Call web_search to find candidate sources.
2) Fetch
Take a result URL and call web_fetch to extract readable Markdown.
3) Stash
Persist useful content with web_stash.
{
"url": "https://example.com/mcp-security",
"title": "MCP Security Guide",
"content": "# MCP Security Guide\n..."
}
4) Grep local context
Run web_grep to locate relevant stashed snippets.
5) Ask with local context
Use web_ask for synthesized answers backed by local sources.
Provider strategy
- Use
duckduckgowhen you want zero-key quick search. - Use
google,bing, orbravewhen you need official API-backed search.
Notes
Warning
web_ask requires a running Ollama server reachable at OLLAMA_URL.
Tip
Keep stashed pages focused and high-quality. Better stash quality generally improves web_ask output quality.