MCP Server Template
The MCP Server Template enables interaction with the LLM Architect tool for architectural design feedback.
Chat Endpoint: Exposes
/llm-architect/chatfor POST requests, accepting an input prompt and optional conversationId to maintain conversation context.LLM Integration: Connects with the LLM CLI to provide architectural analysis and feedback based on prompts.
Testing Tools: Includes TestClient for basic testing and MCP Inspector for visual debugging.
Local Development: Supports integration with Cursor for local testing and verification.
Developer Experience: Offers error handling, logging, and npm scripts for building, testing, and running the server.
Used to install the LLM CLI, which is a prerequisite for the MCP server to function. The README mentions 'brew install llm' for installing the required LLM CLI.
Used for package management, installing dependencies, and running various scripts for the MCP server. Commands like 'npm install', 'npm run dev', and 'npm test' are mentioned throughout the README.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Server Templatehelp me design a microservices architecture for an e-commerce platform"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server Template
Prerequisites
LLM CLI Installation
This project requires the LLM CLI to be installed. You can install it using Homebrew:
brew install llmAfter installation, ensure the llm command is available in your PATH by running:
llm --versionRelated MCP server: MCP Server Template
Getting Started
Development
Install dependencies:
npm installStart the development server with hot reload:
npm run devBuild the project:
npm run buildRun tests:
npm testStart the production server:
npm start
Architect Tool
The Architect tool (src/tools/architect.ts) provides an interface to interact with the LLM CLI for architectural design feedback. It maintains conversation context and handles the communication between your application and the LLM CLI.
Features
Maintains conversation context across multiple interactions
Handles command execution through the LLM CLI
Provides error handling and logging
Supports both new conversations and continued discussions
Requirements
The LLM CLI must be installed and available in your PATH (see Prerequisites section)
Environment variables should be properly configured for the LLM CLI
Testing
The template includes a built-in TestClient for local testing and the MCP Inspector for visual debugging.
Using TestClient
The TestClient provides a simple way to test your tools:
import { TestClient } from "./utils/TestClient";
describe("YourTool", () => {
const client = new TestClient();
it("should process data correctly", async () => {
await client.assertToolCall(
"your-tool-name",
{ input: "test" },
(result) => {
expect(result.toolResult.content).toBeDefined();
}
);
});
});Using MCP Inspector
The template includes the MCP Inspector for visual debugging of your tools:
Start the inspector:
npx @modelcontextprotocol/inspector node dist/index.jsOpen the inspector UI at http://localhost:5173
The inspector provides:
Visual interface for testing tools
Real-time request/response monitoring
Tool metadata inspection
Interactive testing environment
Local Testing with Cursor
To test your MCP server locally with Cursor:
Build and link the package:
npm run build npm run linkVerify the binary works:
npx architect-test-mcp-toolAdd the server to Cursor:
Open Cursor settings
Navigate to the Features tab
Scroll down to MCP Servers section
Click "Add Server"
Select "Command" type
Give it a name (e.g., "Local Example Tool")
Enter the command:
npx architect-test-mcp-toolClick Confirm
Verify the server starts correctly in Cursor by checking the MCP Servers section shows your server as running.
Note: If you make changes to your code, remember to rebuild and relink:
npm run build
npm run linkWhen you're done testing, you can unlink the package:
npm run unlinkThis will remove the global symlink created during development.
Troubleshooting
Using MCP Inspector
The MCP Inspector is a helpful tool for debugging and inspecting your MCP server. To use it:
First, build your project:
npm run buildRun the inspector:
npx @modelcontextprotocol/inspector node dist/index.js
The inspector provides a web interface that allows you to:
View all available tools and their schemas
Test tool calls interactively
Inspect request/response payloads
Debug communication issues between your server and clients
Available Tools
1 toolarchitectC
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.
| Name | Required | Description | Default |
|---|---|---|---|
| conversationId | No | Optional conversation ID for context | |
| input | Yes | Input prompt to process |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions that the tool 'interacts with the llm chat CLI to provide architectural design feedback while maintaining conversation context,' which implies it's a read/write operation with state persistence. However, it lacks details on authentication needs, rate limits, error handling, or what specific 'architectural design feedback' entails. For a tool with no annotation coverage, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, starting with the tool's role as an MCP server and its key functionality. It uses two sentences efficiently: the first covers the resource and parameters, and the second explains the interaction with the CLI and purpose. There's minimal waste, though it could be slightly more concise by integrating the two ideas more tightly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (a chat-based tool with conversation context), no annotations, and no output schema, the description is moderately complete. It explains the tool's purpose and parameters but lacks details on behavioral traits like response format, error cases, or specific feedback mechanisms. For a tool without structured output information, it should do more to compensate, but it provides a basic viable understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds some semantic context beyond the input schema. It mentions that the tool accepts 'a prompt and optional conversationId,' which aligns with the schema's 'input' (required) and 'conversationId' (optional) parameters. However, with 100% schema description coverage (both parameters have descriptions in the schema), the description doesn't provide additional meaning or usage examples. This meets the baseline of 3 for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: it's an MCP server that exposes a resource for POST requests to interact with an LLM chat CLI for architectural design feedback. It specifies the verb ('interacts with'), resource ('/llm-architect/chat'), and context ('maintaining conversation context'). However, since there are no sibling tools mentioned, it doesn't need to distinguish from alternatives, so it falls just short of a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal usage guidance. It mentions that the tool accepts POST requests with a prompt and optional conversationId, but it doesn't explain when to use this tool versus other potential tools (though none are listed as siblings), nor does it provide context about when this specific architectural feedback tool is appropriate versus general chat tools. No exclusions or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
With only one tool, there is no possibility of ambiguity or overlap between tools. The tool 'architect' has a clearly defined and distinct purpose, so an agent cannot misselect between non-existent alternatives.
A single tool inherently exhibits perfect naming consistency, as there are no other tools to compare against. The name 'architect' follows a simple, readable pattern without any conflicting conventions.
One tool is too few for a server named 'MCP Server Template', which implies a broader or more general-purpose scope. A template server should ideally offer multiple tools to demonstrate a range of capabilities, making this count inappropriate for the apparent purpose.
The server is severely incomplete for its implied domain as a template. It only provides a single chat interaction tool, lacking any CRUD operations, configuration tools, or other functionalities expected from a template that should showcase a comprehensive tool surface for agents to learn from.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for building and testing AI agents with multi-model experimentation and insights.
A simple Typescript MCP server built using the official MCP Typescript SDK and smithery/cli. This…
An MCP server that provides an API to LLMs to manage their JumpCloud resources.
Related MCP Servers
- AlicenseCqualityDmaintenanceA production-ready template for creating Model Context Protocol servers with TypeScript, providing tools for efficient testing, development, and deployment.18947MIT
- AlicenseCqualityCmaintenanceA TypeScript-based template for developing Model Context Protocol servers with features like dependency injection and service-based architecture, facilitating the creation and integration of custom data processing tools.1224ISC
- AlicenseCqualityDmaintenanceA TypeScript-based template for building Model Context Protocol servers, featuring fast testing, automated version management, and a clean structure for MCP tool implementations.1894MIT
- FlicenseNot gradedqualityDmaintenanceA template repository for building Model Context Protocol (MCP) servers with TypeScript, featuring full TypeScript support, testing setup, CI/CD pipelines, and modular architecture for easy extension.11
Appeared in Searches
- Using a TypeScript codebase as context for a tool or service
- Repository for Integrating MCP Tools in React
- Requirements for Building a Full-Stack Next.js Application
- A template for MCP (Model-Driven Programming, Manufacturing Control Protocol, or another MCP-related context)
- Instructions for installation or setting up something
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/stevennevins/architect-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server