Satrack Documentation Generator MCP
Server 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
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| executeA | Herramienta unificada del MCP de documentación Satrack. IMPORTANTE: este MCP corre en un servidor remoto y NO accede al filesystem del usuario. El cliente (agente IDE) DEBE: (a) llamar get_documentation_rules para obtener AGENTS.md (fuente de verdad), (b) leer los archivos del workspace con sus propias herramientas y enviar su contenido en sourceFiles cuando aplique, (c) tomar la respuesta del MCP como punto de partida y ajustarla a AGENTS.md, (d) escribir los archivos finales en disco localmente. Todas las acciones se invocan pasando action + params (JSON string). Acciones:
|
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 1 tool
There is only one tool named 'execute' that handles all actions, making it impossible for an agent to distinguish between distinct operations at the tool-selection level. The actions are embedded as parameters, but the tool itself is a vague catch-all.
The single tool name 'execute' is a generic verb that does not follow the standard verb_noun pattern used by well-designed MCP servers. The internal actions have consistent naming (e.g., get_documentation_rules, generate_documentation), but they are not exposed as separate tools.
With a tool count of 1, the server collapses at least 8 distinct operations into a single monolithic dispatcher. This is an extreme mismatch for the scope, which clearly warrants separate tools for rule retrieval, documentation generation, publishing, and reporting.
The embedded actions cover the core documentation workflow: retrieving rules, generating docs, validating, publishing, and handling architecture documentation. There are minor gaps (e.g., no update/delete for published docs), but the primary lifecycle is represented.