byaml-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 | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| graph_from_evaluationA | Construye un Architecture Graph v0.4 desde una evaluación SOFE (findings). Args: findings: lista de findings (con resource_id/resource_type/severity/policy). cost_map: opcional, {resource_id: monthly_cost}. eval_id: id de la evaluación. account: cuenta/entorno (ej. 'aws-acc-123'). |
| graph_from_terraformB | Convierte un Args:
plan_path: ruta al tfplan JSON ( |
| graph_from_accountA | Convierte un perfil AWS (scan) en un Architecture Graph v0.4. NOTA: por ahora con |
| validate_graphC | Valida un Architecture Graph v0.4 y devuelve errors/warnings (byaml.validate). |
| blast_radiusA | Downstream impact de un nodo: qué se cae si falla (nan-graph blast_radius). Args: node_id: id del nodo origen (ej. 'api'). graph: graph JSON v0.4 (output de graph_from_*). max_depth: profundidad máxima (None = infinito). rel_types: filtrar a estos relType (ej. ['invokes']). |
| cost_summaryC | Resumen de costo del grafo. Args: graph: graph JSON v0.4. by: agrupar por 'layer' | 'type' | 'owner'. |
| remediation_planB | Genera un plan de remediación (pasos IaC con snippet terraform) para findings. Args: findings: lista JSON de findings (ej. [{"resource":"i-0abc","type":"no-idle-ec2"}]). graph: opcional, graph v0.4 para contexto. |
| schema_latestB | Versión vigente del schema + resumen del catálogo (fetch schema.byaml.org). Devuelve latest + count de tipos del catalog v0.4. |
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 8 tools
Each tool targets a distinct concern: schema retrieval, graph construction from three different input sources, graph validation, downstream impact analysis, cost aggregation, and remediation planning. No two tools overlap in purpose, making selection unambiguous.
Names follow snake_case and mostly verb_noun (validate_graph, cost_summary, remediation_plan), with graph_from_* indicating source. Minor deviations like schema_latest and blast_radius are still clear and consistent in style, so no confusion arises.
With 8 tools, the surface is well-scoped for an architecture analysis server. Each tool contributes to a clear workflow (create graph, validate, analyze, remediate), and the count is within the ideal range for coherence.
The set covers graph generation from multiple sources, validation, blast radius, cost, and remediation. Minor gaps exist (e.g., no graph diff or editing), but the core lifecycle for analysis is complete and no dead ends are apparent.