MCP Server Template

architect

MCP server for the LLM Architect tool. Exposes resource "/llm-architect/chat" accepting POST requests with a prompt and optional conversationId, and interacts with the llm chat CLI to provide architectural design feedback while maintaining conversation context.

Input Schema

NameRequiredDescriptionDefault
conversationIdNoOptional conversation ID for context
inputYesInput prompt to process

Input Schema (JSON Schema)

{ "properties": { "conversationId": { "description": "Optional conversation ID for context", "nullable": true, "type": "string" }, "input": { "description": "Input prompt to process", "minLength": 1, "type": "string" } }, "required": [ "input" ], "type": "object" }

You must be authenticated.

Other Tools