GroundDocs
Official# GroundDocs
GroundDocs is a version-aware documentation assistant. It connects LLMs to trusted, real-time docsβreducing hallucinations and ensuring accurate, version-specific responses.
## π Installation
```bash
npx @grounddocs/cli@latest install <client>
```
**Supported clients:** cursor, windsurf, cline, claude, witsy, enconvo, vscode
## π§ Manual Setup
To manually configure GroundDocs, add it to your IDE's MCP (Model Context Protocol) configuration:
```json
{
"mcpServers": {
"@grounddocs/grounddocs": {
"command": "npx",
"args": ["-y", "@grounddocs/grounddocs@latest"]
}
}
}
```
After configuration, restart your IDE for the changes to take effect.
π Supported Domain
- **Kubernetes** (all versions, including version-aware kubectl behavior, API schemas, and feature gates)
## ποΈ Architecture
GroundDocs consists of:
- **Local MCP server** (this repo) β lightweight, public, runs inference-time queries
- **Remote backend data repository** (private) β handles scraping, indexing, and heavy lifting
## π Example Query
```
What changes were made to the kubectl command behavior in Kubernetes 1.26 regarding pruning during apply operations?
```
[View example response](https://claude.ai/share/b864ee23-4899-4092-bbd8-a020d55296a7)
## π€ Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: one is for Kubernetes documentation and the other for Python documentation. Their names (k8s_get_documentation vs python_get_documentation) and descriptions explicitly differentiate the domains they serve, with no overlap in functionality. An agent can easily tell them apart based on the technology stack being queried.
Both tools follow a consistent naming pattern: [domain]_get_documentation, using snake_case throughout. This pattern is predictable and readable, making it easy for agents to understand what each tool does based on its name alone. There are no deviations in naming conventions across the tool set.
With only 2 tools, the server feels thin for a documentation-focused service named 'GroundDocs'. While the tools cover Kubernetes and Python, the server name suggests broader documentation capabilities, but there are no tools for other common domains like JavaScript, APIs, or general web technologies. This limited scope may force agents to work around gaps when handling documentation queries outside these two specific areas.
The tool surface is severely incomplete for a documentation server. While Kubernetes and Python are covered, there are obvious gaps for other major documentation domains (e.g., JavaScript, Go, Rust, cloud services, frameworks). Additionally, there are no tools for managing documentation indexes, updating cached data, or handling version conflicts, which are common needs in documentation systems. Agents will frequently encounter dead ends when queries fall outside the two supported domains.