mcp-spec-comments
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| pass_to_ai_for_requirementsA | ユーザー要件をAIに渡して要件定義書を作成させる(ワークフローの最初のステップ)。出力先は .spec-comments/{feature_name}/requirements.md となる。 |
| pass_to_ai_for_designA | 要件定義書を元にAIに設計書を作成させる(ワークフローの2番目のステップ)。出力先は .spec-comments/{feature_name}/design.md となる。 |
| pass_to_ai_for_commentsA | 設計書を元にAIにコメント(@spec-implマーカー)を書かせる(ワークフローの3番目のステップ)。既存ファイルにコメントを追加したり、新規ファイルを作成できる。 |
| verify_spec_commentsA | ファイルに@spec-implマーカーが配置されているかを検証する。pass_to_ai_for_commentsの実行後に使用して、すべてのファイルにマーカーが正しく追加されているか確認する。 |
| pass_to_ai_for_implementationA | コメント付きファイルをAIに渡して実装させる(ワークフローの最後のステップ)。@spec-implマーカーに従って実装し、完了後はDONE状態に更新する。 |
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 5 tools
Each tool represents a distinct stage in a clearly defined workflow: requirements, design, comment generation, verification, and implementation. The sequential nature and specific output paths eliminate ambiguity between tools.
Four of the five tools follow the consistent 'pass_to_ai_for_' prefix pattern, while 'verify_spec_comments' deviates slightly. Overall, the naming is snake_case and predictable, with only minor inconsistency.
Five tools is well-scoped for a focused workflow, providing all necessary steps without redundancy. The count is within the ideal range for a single-purpose server.
The tool set covers the full lifecycle from requirements definition to implementation, including a verification step to ensure comments are correctly placed. No obvious gaps in the workflow.