ACOMO MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ACOMO_API_BASE | No | API のベースURL(ドメインのみを指定してください。`/api/v1` 等のパスは含めない)。例: `http://localhost:3000` | https://acomo.app |
| ACOMO_TENANT_ID | No | acomo テナントID。`callApi` で `x-tenant-id` ヘッダとして送信されます。例: `acomo-example` | |
| ACOMO_ACCESS_TOKEN | No | Bearer アクセストークン。`callApi` 時に `Authorization: Bearer <token>` を送信します。 | |
| ACOMO_OPENAPI_PATH | No | 読み込む OpenAPI 仕様ファイルのパス。通常は変更不要。 | /app/openapi.json |
| ACOMO_REQUEST_TIMEOUT_MS | No | リクエストタイムアウト(ミリ秒)。 | 30000 |
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 |
|---|---|
| healthB | acomo MCP server health check (fixed response) |
| list_apisB | acomoのAPI一覧を返す |
| describe_apiC | operationIdの詳細(paths/method/要約/原文)を返す |
| api_schemasC | operationIdからparameters/requestBody/responsesを抜粋 |
| generate_request_templateC | operationIdからpath/query/body雛形を生成 |
| call_apiC | operationIdを指定してAPIを呼び出す |
| list_componentsB | acomoのAPIスキーマ(components.schemas)の一覧を返す |
| describe_componentC | 指定schema名の詳細(JSON Schema)を返す |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| guide | Assists with design and implementation guided by the acomo API and principles. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool has a clearly distinct purpose with no overlap: list_apis and list_components provide overviews, describe_api and describe_component give detailed information, api_schemas extracts specific parts, generate_request_template creates templates, call_api executes calls, and health checks server status. The descriptions make it easy to differentiate between listing, describing, extracting, generating, calling, and checking operations.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., list_apis, describe_api, call_api). The verbs (list, describe, generate, call, health) are clear and appropriately paired with nouns (apis, components, request_template, api), creating a predictable and readable naming convention throughout the set.
With 8 tools, this server is well-scoped for its purpose of interacting with an API documentation system (acomo). Each tool serves a specific function in the workflow (listing, describing, extracting, generating, calling, and health checking), and none appear redundant or unnecessary, making the count appropriate for the domain.
The tool set provides complete coverage for the domain of API documentation exploration and interaction: it allows listing APIs and components, describing them in detail, extracting schemas, generating request templates, calling APIs, and checking server health. There are no obvious gaps, as it supports the full lifecycle from discovery to execution.