Skip to main content
Glama

Astah MCP

Servidor MCP local e genérico para transformar pedidos e enunciados de exercícios de modelagem em projetos nativos do Astah (.asta).

O usuário conversa normalmente com o agente do cliente MCP: pode descrever o modelo desejado, colar o enunciado ou anexar um PDF se o cliente conseguir lê-lo. O agente interpreta o conteúdo e chama o servidor com uma especificação estruturada; o usuário não precisa escrever JSON nem informar coordenadas.

O projeto foi construído sobre a API oficial do Astah. Ele implementa todos os tipos de diagrama que a instalação Astah UML permite criar nativamente por API e rejeita explicitamente tipos indisponíveis, evitando apresentar um diagrama aproximado como se fosse o tipo solicitado.

Fluxo de uso

  1. O usuário informa o que quer modelar ou fornece o enunciado do exercício.

  2. O agente identifica elementos, propriedades, relações, multiplicidades e o tipo de diagrama adequado.

  3. O MCP valida a especificação e cria o projeto nativo no Astah.

  4. O servidor calcula um layout compacto quando não recebe posições explícitas.

  5. O Astah exporta os diagramas para PNGs temporários.

  6. O agente inspeciona as imagens e confirma que não há cortes ou sobreposições.

  7. A pasta temporária é apagada; somente o .asta final permanece no caminho escolhido.

Por padrão, o MCP cria apenas um diagrama e comprime o conteúdo nele. Mais de um diagrama só é aceito quando o pedido ou o enunciado exige explicitamente várias visões.

Related MCP server: staruml-controller-erd-mcp

Diagramas suportados

Esta versão cria nativamente:

  • diagrama de classes, incluindo classes abstratas, interfaces, enumerações e objetos;

  • diagrama de casos de uso;

  • diagrama de máquina de estados;

  • diagrama de atividades;

  • diagrama de sequência;

  • diagrama de estrutura composta;

  • mapa mental.

Também são suportados os principais elementos e relações próprios de cada tipo, como atributos, operações, literais, associações, agregações, composições, generalizações, realizações, dependências, atores, include, extend, transições, fluxos, mensagens, retornos, portas e conectores.

Limites da API

Na edição Astah UML usada pelo servidor, a API não cria nativamente diagramas de comunicação, componentes, implantação, fluxograma, fluxo de dados, entidade-relacionamento, requisitos ou CRUD. Alguns elementos isolados, como Component e Node, existem na API de modelo, mas isso não habilita a criação do respectivo diagrama nativo.

Quando um desses tipos for solicitado, o MCP retorna uma explicação clara da limitação. Ele não troca silenciosamente o tipo pedido por outro. A matriz oficial de suporte pode variar entre produtos e versões do Astah: Astah API Support.

Layout automático

O servidor:

  • calcula a menor largura segura considerando nomes, atributos, operações e parâmetros;

  • respeita o tamanho mínimo obrigatório de cada apresentação nativa do Astah;

  • alinha elementos equivalentes em uma grade compacta e simétrica;

  • centraliza superclasses acima das subclasses;

  • organiza atividades e estados em fluxo vertical;

  • distribui linhas de vida uniformemente;

  • prioriza relações retas e usa segmentos ortogonais quando é necessário desviar;

  • reserva corredores para rótulos, multiplicidades, portas e conectores;

  • não divide um diagrama apenas para obter mais espaço;

  • aceita posições explícitas quando o agente identifica que o enunciado exige um arranjo específico.

As regras completas estão em docs/LAYOUT_GUIDE.md.

Requisitos

  • Windows;

  • Astah UML instalado;

  • Node.js 18 ou superior;

  • JDK com java e javac no PATH.

Não há dependências npm externas. O servidor usa módulos nativos do Node.js e os arquivos JAR instalados com o Astah.

Por padrão, o Astah é procurado em C:\Program Files\astah-UML. Para usar outra instalação, defina ASTAH_HOME e reabra o cliente MCP:

[Environment]::SetEnvironmentVariable(
  "ASTAH_HOME",
  "D:\Aplicativos\astah-UML",
  "User"
)

Instalação

Clone o repositório:

git clone https://github.com/g0mz/astah-mcp.git
cd astah-mcp

Confira o ambiente:

node --version
java -version
javac -version
node astah-mcp-server.js

O último comando inicia o servidor via stdio e fica aguardando um cliente MCP. Use Ctrl+C para encerrá-lo.

Configuração do cliente MCP

Adicione o servidor à configuração do cliente, substituindo o caminho pelo local do clone:

{
  "mcpServers": {
    "astah": {
      "command": "node",
      "args": [
        "C:\\caminho\\para\\astah-mcp\\astah-mcp-server.js"
      ]
    }
  }
}

Antigravity IDE

Abra o painel do agente e selecione ...MCP ServersManage MCP ServersView raw config. Adicione o objeto acima ao arquivo global ~/.gemini/config/mcp_config.json ou ao arquivo local .agents/mcp_config.json do projeto. Reinicie ou recarregue os servidores MCP.

Outros clientes

Claude Desktop, VS Code com GitHub Copilot, Cline, Goose e outros clientes compatíveis com MCP podem usar a mesma configuração stdio: comando node e caminho absoluto de astah-mcp-server.js.

O cliente precisa ter um agente/modelo capaz de interpretar o enunciado e usar ferramentas MCP. Para enunciados em PDF, ele também precisa conseguir ler o anexo.

Como pedir um modelo

Depois de configurar o servidor, escreva ao agente em linguagem natural. Exemplos:

Crie no Astah um diagrama de classes para este enunciado e salve em
C:\Projetos\biblioteca.asta. Inclua atributos, operações, relações e multiplicidades.
Leia o PDF anexado, resolva o exercício no Astah e crie somente o diagrama pedido.
Mantenha tudo compacto, reto e sem cortar textos.
Modele o ciclo de vida de um pedido com uma máquina de estados e salve em
C:\Projetos\estados-pedido.asta.

Se o arquivo de saída já existir, o MCP não o substitui por padrão. O agente só deve enviar overwrite: true quando o usuário autorizar a substituição explicitamente.

Ferramentas MCP

create_astah_model

Ferramenta principal. Recebe do agente a interpretação estruturada do enunciado, cria um ou mais diagramas nativos e retorna as imagens temporárias para revisão visual.

Ela aceita:

  • caminho absoluto do .asta;

  • contexto original do exercício;

  • tipo, nome, elementos, membros e relações de cada diagrama;

  • coordenadas opcionais — quando omitidas, o layout é automático;

  • autorização explícita para múltiplos diagramas e para sobrescrita.

O esquema completo é fornecido ao cliente automaticamente por tools/list; normalmente ninguém precisa montá-lo manualmente.

get_astah_capabilities

Lista os tipos, elementos e relações criáveis na instalação atual e explica os tipos indisponíveis.

verify_astah_visual_layout

Exporta e revisa um projeto .asta existente sem modificá-lo. Os PNGs e o relatório são temporários e apagados após serem carregados na resposta MCP.

get_astah_layout_guidelines

Retorna as regras visuais usadas pelo gerador e pela inspeção final.

validate_astah_environment

Confirma a presença do Astah, da API, do Java, do exportador e dos geradores, sem alterar projetos.

Compatibilidade

create_meteorological_station_model continua disponível somente para clientes antigos que já dependiam dessa ferramenta. Novos exercícios devem usar create_astah_model.

Testes

Teste genérico mínimo:

node tests\smoke-client.mjs "C:\Temp\astah-mcp-smoke.asta"

Teste explícito de todos os sete tipos criáveis:

node tests\all-diagrams-client.mjs "C:\Temp\astah-mcp-all.asta"

Use caminhos novos ou remova os projetos de teste antes de repetir, pois a proteção contra sobrescrita também vale nos testes.

Estrutura

astah-mcp/
├── astah-mcp-server.js
├── java/
│   ├── UniversalAstahModel.java
│   └── MeteorologicalStationModel.java
├── tests/
│   ├── smoke-client.mjs
│   └── all-diagrams-client.mjs
├── docs/
│   └── LAYOUT_GUIDE.md
├── package.json
└── README.md

Segurança e arquivos temporários

O servidor inicia processos locais do Node.js, Java e Astah. Instale somente uma cópia confiável. Projetos existentes são protegidos contra substituição acidental. Especificações intermediárias, PNGs e relatórios de revisão são criados na pasta temporária do sistema e removidos automaticamente; o .asta solicitado é o único artefato permanente.

Available Tools

6 tools
create_astah_modelA

Ferramenta principal e genérica. Depois de interpretar o pedido ou enunciado escrito pelo usuário, converta-o para esta especificação e crie diagramas nativos no Astah. Crie somente um diagrama por padrão; use vários apenas quando o usuário ou o enunciado os pedir explicitamente. O servidor calcula um layout compacto, alinhado e simétrico quando x/y não forem informados, exporta PNGs temporários para inspeção visual e preserva somente o .asta final.

ParametersJSON Schema
NameRequiredDescriptionDefault
diagramsYesDiagramas pedidos. Use um único item, salvo solicitação explícita por mais diagramas.
overwriteNoDeve ser true para substituir intencionalmente um arquivo existente.
outputPathYesCaminho absoluto do arquivo .asta final.
exerciseContextNoPedido ou enunciado original, para registrar o contexto interpretado pelo agente.
multipleDiagramsRequestedNoDefina true somente quando o pedido original exigir mais de um diagrama.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses key behaviors: automatic layout when x/y are omitted, temporary PNG export for visual inspection, and preservation of only the final .asta file. It does not mention overwrite behavior or return format, but the disclosed behaviors are valuable and non-contradictory.

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

Conciseness5/5

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

The description is three sentences long, front-loaded with the tool's role and purpose, and each sentence conveys essential information: what the tool does, default diagram count, and layout/output behavior. There is no redundant or filler content.

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

Completeness4/5

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

Given the complex schema with nested objects and the absence of an output schema, the description provides sufficient high-level guidance: how to use the tool (interpret, convert, create), default behavior, and what happens with layout and files. It could have explicitly directed agents to get_astah_capabilities for valid kinds, but the schema already does this, so the completeness is adequate.

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

Parameters3/5

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

The schema description coverage is 100%, with detailed descriptions for all parameters including nested properties. The description adds some context about x/y omission and the default single diagram, but these are already present in the schema (e.g., 'Omitir para layout automático' and 'Use um único item, salvo solicitação explícita por mais diagramas'). Therefore, the description adds marginal value beyond the schema, warranting the baseline of 3.

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 states the tool's purpose: 'crie diagramas nativos no Astah' (create native diagrams in Astah), using a specific verb and resource. It also frames itself as 'Ferramenta principal e genérica' (main and generic tool), which distinguishes it from sibling tools like verify_astah_visual_layout and get_astah_capabilities.

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

Usage Guidelines4/5

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

The description provides clear usage context: 'Depois de interpretar o pedido ou enunciado escrito pelo usuário, converta-o para esta especificação e crie diagramas' (after interpreting the user's request, convert it to this specification and create diagrams). It also gives explicit guidance on diagram count: 'Crie somente um diagrama por padrão; use vários apenas quando o usuário ou o enunciado os pedir explicitamente.' However, it does not explicitly name alternative tools or exclusions, relying on the 'main tool' framing.

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

create_meteorological_station_modelB

Cria um novo projeto Astah, exporta os diagramas para uma pasta temporária e retorna as imagens para a inspeção visual final de sobreposições. A pasta temporária é removida em seguida.

ParametersJSON Schema
NameRequiredDescriptionDefault
overwriteNoDeve ser true para substituir um arquivo existente.
outputPathYesCaminho absoluto de um novo arquivo .asta.
layoutProfileNodomain

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the temporary folder removal after export, which is a notable side effect. However, it doesn't mention other behaviors like overwrite handling, error cases, or permissions, leaving gaps for a tool with this complexity.

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

Conciseness5/5

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

The description is two sentences, front-loaded with the main action, and includes all key workflow steps (create, export, return, cleanup) without unnecessary detail. Every sentence earns its place.

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

Completeness3/5

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

The tool is moderately complex (create, export, inspect, delete), and while the description explains the workflow, it lacks specifics about how images are returned, prerequisites, or failure behavior. Given no annotations or output schema, the description is adequate but not fully complete for a tool of this scope.

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

Parameters3/5

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

The schema already covers 67% of parameters with descriptions (outputPath and overwrite). The description adds no parameter-specific information, but since schema coverage is moderate, the baseline of 3 is appropriate. It doesn't compensate for the un-described layoutProfile parameter, but this is not a major gap.

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

Purpose4/5

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

The description clearly states the tool creates a new Astah project, exports diagrams to a temporary folder, and returns images for visual inspection. This is a specific workflow that distinguishes it from the sibling tool 'create_astah_model', though it doesn't explicitly mention the 'meteorological station' specialization from the name.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives or when not to use it. The description implies a use case (generating images for visual inspection) but does not reference any sibling tools or state exclusions.

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

get_astah_capabilitiesA

Lista exatamente os tipos de diagramas, elementos e relações que este servidor consegue criar nativamente na API instalada, além das limitações conhecidas.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

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

Without annotations, the description carries the burden. It clearly states the output scope (exact types, known limitations) and implicitly indicates a read-only operation. It does not mention side effects or return formatting, but for a capability listing this is sufficient.

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

Conciseness5/5

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

A single, well-structured sentence that front-loads the action and provides key content details without any redundancy or filler.

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?

The description fully covers what can be expected: it names the categories of information (diagrams, elements, relationships) and the inclusion of known limitations. With no parameters and no output schema, this is complete for a discovery tool.

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

Parameters4/5

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

The tool has zero parameters, so the baseline is 4. The description naturally emphasizes what the tool returns rather than inputs, which is appropriate and adds no confusing parameter cues.

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 uses a specific verb ('Lista') and identifies the resource (diagram types, elements, relationships, limitations). It clearly distinguishes this from sibling tools by focusing on capability discovery rather than creation or validation.

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

Usage Guidelines3/5

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

The usage context is implied: one would call this to learn what the server can create before using create tools. However, there is no explicit 'when to use' or comparison with alternatives, so it relies on the user to infer.

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

get_astah_layout_guidelinesA

Retorna as regras de legibilidade e disposição aplicadas pelo servidor.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states that the tool returns rules but does not mention whether it is read-only, whether it has side effects, what the output format is, or any potential limitations. The phrase 'aplicadas pelo servidor' adds minimal context but does not meaningfully disclose behavioral traits beyond the obvious retrieval action.

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

Conciseness5/5

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

The description is a single sentence that is front-loaded with the verb and clearly states the resource. It contains no unnecessary words or redundancy. It is concise and well-structured, achieving maximum efficiency for the information it conveys.

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

Completeness3/5

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

Given the tool's simplicity (no parameters, no output schema, no annotations), the description is minimally sufficient to understand its basic purpose. However, it lacks detail about the return value's format or content, which would be helpful since no output schema is provided. The description does not explain what 'readability and layout rules' entail or how they might be structured, leaving the agent to guess. For a no-arg getter, this is adequate but not complete.

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

Parameters4/5

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

The tool has zero parameters, and the schema confirms this with an empty properties object (schema description coverage is 100%). Since there are no parameters to describe, the description does not need to provide parameter semantics. The baseline for 0 parameters is 4, and the description does not need to compensate for any undocumented parameters.

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 uses the specific verb 'Retorna' (Returns) and clearly identifies the resource as 'as regras de legibilidade e disposição aplicadas pelo servidor' (readability and layout rules applied by the server). It is distinct from sibling tools like 'verify_astah_visual_layout' (which verifies layout) and 'get_astah_capabilities' (which returns capabilities), making the 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 Guidelines2/5

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

The description provides no information about when to use this tool versus alternatives. It does not mention any prerequisites, related tools, or scenarios where this tool would be preferred. Given the existence of sibling tools such as 'verify_astah_visual_layout' and 'get_astah_capabilities', some usage guidance would be helpful but is absent.

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

validate_astah_environmentA

Valida a instalação, API, exportador e compilação do gerador Astah sem alterar projetos.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the burden. It explicitly states 'sem alterar projetos' (without altering projects), which discloses non-destructive behavior. However, it does not describe return values, failure modes, or any other behavioral details such as network calls or side effects.

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

Conciseness5/5

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

The description is a single, concise sentence that front-loads the purpose and includes a key safety note ('sem alterar projetos'). Every word earns its place with no redundancy.

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

Completeness3/5

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

For a zero-parameter validation tool, the description adequately outlines what is validated and that it is non-destructive. However, without an output schema, it does not clarify what the tool returns (e.g., success/failure, diagnostic details), which is a notable gap.

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

Parameters4/5

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

The tool has zero parameters, so the schema provides all necessary information. The description adds no parameter details, but none are needed; baseline of 4 is appropriate.

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 states the tool validates the Astah environment installation, API, exporter, and compilation. The verb 'Valida' (validates) combined with the specific resource distinguishes this from sibling tools that create models or verify layout.

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

Usage Guidelines2/5

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

The description implies usage for checking the environment before doing other operations, but it provides no explicit guidance on when to use this tool versus alternatives, nor does it mention prerequisites or expected workflows.

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

verify_astah_visual_layoutA

Exporta diagramas de um projeto Astah existente em uma pasta temporária, executa checagens automáticas, retorna as imagens para comparação visual obrigatória e remove os arquivos temporários em seguida.

ParametersJSON Schema
NameRequiredDescriptionDefault
projectPathYesCaminho absoluto do arquivo .asta a revisar.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses key behaviors: creating temporary files, running automated checks, returning images, and removing temporary files afterward. It omits details like failure modes or return format, but the main workflow is transparent.

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

Conciseness5/5

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

The description is a single, well-structured sentence that lists the full workflow in chronological order. It is concise, front-loaded with the main action, and every clause adds value without redundancy.

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

Completeness4/5

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

Given the tool's multi-step behavior and absence of an output schema, the description explains the main steps and what is returned (images). It is slightly vague about the nature of the automatic checks and how images are returned, but it is sufficient for an agent to know when and how to invoke it.

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

Parameters3/5

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

The schema already covers the only parameter (projectPath) with a clear description. The tool description adds no parameter-specific detail beyond referencing the existing project, but with 100% schema coverage, the baseline of 3 is appropriate.

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 states the tool's function: it exports diagrams from an existing Astah project, runs automatic checks, returns images for mandatory visual comparison, and cleans up temporary files. This detailed process distinguishes it from sibling tools like get_astah_layout_guidelines or validate_astah_environment, making the 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 Guidelines4/5

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

The description implies usage context: it applies to an existing Astah project ("projeto Astah existente") and is for mandatory visual comparison. While it doesn't explicitly state when not to use it or name alternatives, the context is clear enough to select this tool over siblings.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 6 tool updatesv4.0.0
    • First observedcreate_astah_model
    • First observedcreate_meteorological_station_model
    • First observedget_astah_capabilities
    • First observedget_astah_layout_guidelines
    • First observedvalidate_astah_environment
    • First observedverify_astah_visual_layout

TDQS

A3.9/5.0

Scored across 6 tools

Disambiguation3/5

Most tools are clearly distinct, but 'create_astah_model' and 'create_meteorological_station_model' overlap in purpose; the latter appears to be a specialized version of the former, yet the descriptions don't clarify when to use one over the other. The remaining tools (verify, get, validate) are unambiguous.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in snake_case (create_*, verify_*, get_*, validate_*). The naming is uniform and predictable, making it easy to infer tool behavior from the name alone.

Tool Count5/5

With 6 tools, the server is well-scoped for its purpose of creating, verifying, and validating Astah models. Each tool has a clear role, and the count is neither too thin nor excessively large.

Completeness4/5

The server covers the core lifecycle: creating models (generic and specific), validating layout, and checking environment. Minor gaps exist, such as no explicit update/delete tools, but the generic creation tool likely handles most needs, and the verification workflow is well-supported.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers