Grounder
PYPI · GROUNDER-MCP · SCANNED SEP 21
Web grounding for local & cloud LLMs: search, fetch, token-capped evidence packs, and research.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score → Why this is hard to score →
Supply Chain Security100
- No malware found by supply-chain analysis.Pass
- No known CVEs affecting this package version or its production dependencies.Pass
- Runs setuptools.build_meta at install time, a recognised native-build step with no shell scripting around it. View diagnostics → Pass
- 0 of 29 dependencies flagged as unhealthy. View diagnostics → Pass
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 38 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability52
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 1227 tokens (~306/item across 4 items; 4 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management83
- Stability observed for 25 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage71
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 0% of tool parameters carry a description.Fail
- Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Tool Safety100
- No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
- We read all 4 captured tool definition(s), and no name or description among them implies an irreversible operation.Pass
- An AI judge read all 4 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
How do I install the Grounder MCP server?
Grounder runs locally as a PyPI package, launched with uvx grounder-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.
pypi · grounder-mcp
claude mcp add rozetyp-grounder -- uvx grounder-mcp
{
"mcpServers": {
"rozetyp-grounder": {
"command": "uvx",
"args": [
"grounder-mcp"
]
}
}
} {
"servers": {
"rozetyp-grounder": {
"command": "uvx",
"args": [
"grounder-mcp"
]
}
}
} codex mcp add rozetyp-grounder -- uvx grounder-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"rozetyp-grounder": {
"type": "local",
"command": [
"uvx",
"grounder-mcp"
],
"enabled": true
}
}
} openclaw mcp add rozetyp-grounder --command uvx --arg grounder-mcp
mcp_servers:
rozetyp-grounder:
command: "uvx"
args: ["grounder-mcp"] {
"McpServers": {
"rozetyp-grounder": {
"Transport": "stdio",
"Command": "uvx",
"Arguments": [
"grounder-mcp"
]
}
}
} assistant mcp add rozetyp-grounder -t stdio -c uvx -a grounder-mcp
{
"mcpServers": {
"rozetyp-grounder": {
"command": "uvx",
"args": [
"grounder-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 21 Sept 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 80 to 83. That category is still filling its 30-day observation window: 24 days of observed history at the previous scan, 25 at this one. The score rises as the window fills, whether or not the server changes.
- 20 Sept 26 −3
- Stability: pass → 0.80 functional
- 19 Sept 26 0
- Stability: 0.97 → pass security
- 18 Sept 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 93 to 97. That category is still filling its 30-day observation window: 28 days of observed history at the previous scan, 29 at this one. The score rises as the window fills, whether or not the server changes.
- 16 Sept 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 87 to 90. That category is still filling its 30-day observation window: 26 days of observed history at the previous scan, 27 at this one. The score rises as the window fills, whether or not the server changes.
- 15 Sept 26 +15
- Malware scan: unverified → pass ▲ security
- 14 Sept 26 −14
- Malware scan: pass → unverified ▼ security
- Package version: 0.3.1 → 0.4.1 functional
- 13 Sept 26 −3
- Stability: pass → 0.80 functional
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 21 Sept 2026 · Analysed pypi/grounder-mcp@0.4.1
Provenance No attestation
The registry publishes no build provenance for this version, so there is nothing to verify.
| Result | No attestation |
|---|---|
| Ecosystem | pypi |
Background: How many MCP packages publish verified provenance →
Install scripts 1 script
| Hook | Tier | Command |
|---|---|---|
| build_backend | allowlisted | setuptools.build_meta |
Background: Why install scripts are a supply-chain risk →
Dependencies 29 packages
| Packages resolved | 29 |
|---|---|
| Tree resolution | Complete |
Background: SBOMs and build attestations, explained →
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →
deep_search ~395
Search the web across several pages to answer a question in ONE call: it runs a search, fetches several of the top result pages, ranks passages across all of them, and returns the few verbatim slices most relevant to your question. Use this for a question that needs reading and comparing MULTIPLE pages ("which databases use X and how do they differ", "what do reviewers say about Y") instead of running web_search and then many fetch calls yourself - it does that multi-page reading for you and hands back only what fits your context window. Do NOT use it for a quick fact a single search snippet already answers (use web_search), or to read ONE page whose URL you already have (use fetch). Returns `passages` (verbatim, ranked, each with its source `url`) - it returns EVIDENCE, not a written answer: YOU read the passages and compose the answer, and YOU decide whether they actually answer your question (grounder does not judge that - it depends on what you are really asking). If the passages do not contain the answer, say so rather than guessing. If you would rather be handed prose than read the evidence yourself, set `include_answer: true` and the reply ALSO carries `answer` - a short answer written from those same passages. The passages still come back either way, so you can check the answer against its own evidence, and the field is omitted rather than guessed at when the passages do not support one. It costs no extra pages. The pack is capped to fit your context window (`max_tokens`, default 600) so it won't overflow a small local model. Slower than a single fetch (it reads several pages). Costs 1 page per page read (default up to 6).
| Name | Type | Req | Description |
|---|---|---|---|
| include_answer | boolean | – | – |
| max_fetches | integer | – | – |
| max_tokens | integer | – | – |
| query | string | yes | – |
Structured output declared, but exposes no named fields.
No examples provided.
fetch ~283
Fetch the full, clean content of ONE web page as markdown. Use this to READ a result you got from web_search when the snippet isn't enough and you need the page's actual text - exact pricing, full docs, the complete article. Check the search snippet first: for many factual questions it already contains the answer, and a fetch costs a page. The `url` MUST be one a recent search in this session returned: fetch reads your grounded sources, it is not a general-purpose scraper for arbitrary URLs. Returns clean markdown in `content` (set clean=false for raw HTML), plus the page's `title`, its `description`, and the FINAL `url` after redirects - cite that one. Pass `query` (what you want from the page) to also get `passages`: the few most-relevant verbatim slices, so a tight context window can read those instead of the whole page. This call is synchronous - it returns the content or an honest failure, and you never poll. A page we could not really read is reported as a failure, NEVER as content, so you will not be handed a bot-wall or a consent screen to summarise. Costs 1 page per successful call; a failed fetch is free.
| Name | Type | Req | Description |
|---|---|---|---|
| clean | boolean | – | – |
| max_tokens | – | – | – |
| query | – | – | – |
| url | string | yes | – |
Structured output declared, but exposes no named fields.
No examples provided.
research ~384
INVESTIGATE an open question that has no ready-made answer sitting on any single page - the kind you would hand to a research analyst, not look up. The model DRIVES an iterative loop: it plans what to find, searches, reads the best PRIMARY sources, notices what is STILL missing, searches again, and reasons to a GROUNDED conclusion - or reports honestly that the web does not support one. Reach for it when the answer must be WORKED OUT, not retrieved: open/analytical ("is RAG becoming obsolete as context windows grow to millions of tokens?"), contested ("have LLM scaling laws hit diminishing returns, and why?"), or multi-part where the answer is spread across sources one search will not all surface ("how do Tavily, Exa and Firecrawl differ on pricing AND what each returns"). deep_search reads what ONE search surfaced; research works out what to search for at all and synthesizes an answer no single page states. Do NOT use it for a quick fact (web_search), a known page (fetch), or a question one search settles (deep_search) - it is slower and spends one of a small monthly allowance. It runs for a MINUTE OR MORE and is delivered by polling: if the reply is `{"state": "researching"}`, the work is still going - call again with the SAME query until you get the report (the MCP client does this for you automatically). Returns a cited evidence pack (`passages` with source urls) and, by default, a grounded `answer` written ONLY from those passages - never invented - that also names what the sources do not cover. Billed as ONE research run against your plan's monthly allowance, ONLY when it completes; polling is free.
| Name | Type | Req | Description |
|---|---|---|---|
| include_answer | boolean | – | – |
| max_tokens | integer | – | – |
| query | string | yes | – |
Structured output declared, but exposes no named fields.
No examples provided.
web_search ~165
Search Google and return the organic results - title, URL, snippet, domain, publication date - plus the surfaces around them: `people_also_ask` (related questions, often with a factual snippet), `related_searches` (reformulations), `knowledge_graph` (entity panel), and per-result `sitelinks`. READ THE SNIPPETS BEFORE FETCHING: for factual questions Google's snippet frequently states the answer outright (a pricing query returns the price), so you can often cite a source without spending a fetch. Use `fetch` when you need the full page, and `deep_search` when one page will not settle it. Returns up to 10 results. Costs 1 page.
| Name | Type | Req | Description |
|---|---|---|---|
| query | string | yes | – |
| region | string | – | – |
Structured output declared, but exposes no named fields.
No examples provided.
What is the Grounder MCP server?
Grounder is an MCP server listed in the public MCP registry as io.github.rozetyp/grounder. Web grounding for local & cloud LLMs: search, fetch, token-capped evidence packs, and research. This page covers its PyPI package (grounder-mcp).
Is the Grounder MCP server safe to use?
Grounder scores 76 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 21 September 2026. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.
What tools does the Grounder MCP server expose?
Grounder exposes 4 tools: web_search, fetch, deep_search, research. Their descriptions and schemas cost roughly 1,227 tokens of context every time the server is loaded.
Is the Grounder MCP server still maintained?
Grounder is still listed as active in the MCP registry. We last reached this channel on 21 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.
What licence is the Grounder MCP server under?
Grounder declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.