Skip to main content
Glama
camoran89

Satrack Documentation Generator MCP

by camoran89

execute

Generates Satrack technical documentation by applying server rules, creating architecture docs, validating reports, and publishing to Azure Storage via one unified MCP action.

Instructions

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:

  • get_user_info: Verifica sesión Azure AD. params: {} | { token: "..." } (token solo para validación puntual; para autenticación permanente coloca el sk-... en mcp.json -> headers.Authorization)

  • generate_documentation: Devuelve AGENTS.md + plantillas a escribir LOCALMENTE. params: { outputPath, projectName, siteName, sourceFiles?, ... }. sourceFiles debe contener el contenido (no rutas) leído por el agente.

  • get_documentation_rules: Lee AGENTS.md del servidor (LLAMAR PRIMERO). params: {}

  • get_autogen_guide: Lee autogen-guide.md. params: {}

  • get_component_generation_prompt: Obtiene prompt de componentes. params: {}

  • report_validation: Registra reporte en BD. params: { analysis_type, user, files_analyzed, findings, summary, ... }

  • publish_documentation: Publica en Azure Storage. params: { projectPath, siteName?, skipBuild? }

  • generate_architecture_documentation: Docs multi-proyecto. params: { outputPath, architectureName, siteName, rootPath? | projects? }

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYesAcción a ejecutar: get_user_info | generate_documentation | get_documentation_rules | get_autogen_guide | get_component_generation_prompt | report_validation | publish_documentation | generate_architecture_documentation
paramsNoJSON string con los parámetros de la acción (default: "{}")
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully carries the behavioral disclosure burden. It states the MCP runs remotely, cannot access the user's filesystem, and requires the client to send file content via sourceFiles. It also discloses side effects such as publishing to Azure Storage and writing reports to a database.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long due to covering eight actions, but it is well-structured with a lead paragraph and bullet list. It front-loads the critical remote-execution context and uses efficient formatting, though some redundancy exists (e.g., repeating the action list in the schema) that could be trimmed.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's high complexity (8 actions), the absence of output schema and annotations, the description is remarkably complete. It covers workflow, authentication, file handling, action-specific parameters, and side effects, providing everything an agent needs to select and invoke the correct action.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema only defines generic action and params fields, but the description details per-action parameter structures, including required and optional fields like sourceFiles, siteName?, and skipBuild?. This adds significant meaning beyond the bare schema, particularly the note that sourceFiles must contain content, not paths.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool as a unified documentation MCP for Satrack and enumerates eight specific actions, each with a distinct verb (get, generate, publish, report). It effectively distinguishes between these internal operations and makes the tool's purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit workflow instructions: call get_documentation_rules first, use the agent's own tools to read files, and write outputs locally. It also clarifies when each action is applicable and gives authentication guidance for get_user_info, offering strong usage direction in the absence of sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/camoran89/mcp-docs'

If you have feedback or need assistance with the MCP directory API, please join our Discord server