GroundDocs
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| python_get_documentationA | |
| k8s_get_documentationA | Use this tool for any Kubernetes documentation-related query—especially when the user invokes /k8s or asks about kubectl commands, API objects, manifests, controllers, or version-specific features. This tool connects to a version-aware, trusted documentation index (e.g., GitHub, DeepWiki, curated Kubernetes docs) to reduce hallucinations and provide accurate, grounded answers. Args: query: A natural language question (e.g., "How do I define a Deployment?") version: (Optional) Kubernetes version (e.g., "v1.28"). Defaults to the detected cluster version. top_k: (Optional) Number of top matching documents to return. Defaults to 10. Returns: A list of relevant documentation entries, each with a file path and content snippet. Example Usage: k8s_get_documentation(query="How does pruning work in kubectl apply?", version="v1.26") Notes:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
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.