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 |
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 |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
health | acomo MCP server health check (fixed response) |
list_apis | acomoのAPI一覧を返す |
describe_api | operationIdの詳細(paths/method/要約/原文)を返す |
api_schemas | operationIdからparameters/requestBody/responsesを抜粋 |
generate_request_template | operationIdからpath/query/body雛形を生成 |
call_api | operationIdを指定してAPIを呼び出す |
list_components | acomoのAPIスキーマ(components.schemas)の一覧を返す |
describe_component | 指定schema名の詳細(JSON Schema)を返す |