waroom_get_service_architecture_context
Retrieve the architecture context of a specific service using Waroom MCP. Input the service name to access detailed architectural insights in compliance with Model Context Protocol standards.
Instructions
特定のサービスのアーキテクチャコンテキストを取得します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
service_name | Yes | サービス名 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"service_name": {
"description": "サービス名",
"maxLength": 100,
"minLength": 1,
"type": "string"
}
},
"required": [
"service_name"
],
"type": "object"
}