MCP Server Template

by stevennevins

7 stars
267 downloads
Not rated
GitHub

Description

# MCP Server Template ## Prerequisites ### LLM CLI Installation This project requires the LLM CLI to be installed. You can install it using Homebrew: ```bash brew install llm ``` After installation, ensure the `llm` command is available in your PATH by running: ```bash llm…

About

# MCP Server Template ## Prerequisites ### LLM CLI Installation This project requires the LLM CLI to be installed. You can install it using Homebrew: ```bash brew install llm ``` After installation, ensure the `llm` command is available in your PATH by running: ```bash llm --version ``` ## Getting Started ###…

Details

Author
stevennevins
GitHub stars
7
Downloads
267
Categories
Developer Tools

- Architect tool for architectural design feedback via LLM CLI
- Maintains conversation context across multiple LLM interactions
- Includes TestClient for unit testing of tools
- MCP Inspector for visual debugging and tool inspection
- Hot reload development server with npm run dev
- Integration with Cursor for local MCP server testing

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name MCP Server Template
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install dependencies with npm install, then start development with npm run dev. Build the project with npm run build, run tests with npm test, and start the production server with npm start. For local testing, use the TestClient, MCP Inspector (npx @modelcontextprotocol/inspector node dist/index.js), or integrate with Cursor by building and linking the package.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp server template": {
            "architect-mcp-server": {
                "command": "npx",
                "args": [
                    "@modelcontextprotocol/inspector",
                    "node",
                    "dist/index.js"
                ]
            }
        }
    }
}

McpServers

{
    "architect-mcp-server": {
        "command": "npx",
        "args": [
            "@modelcontextprotocol/inspector",
            "node",
            "dist/index.js"
        ]
    }
}

MCP Server Template

Prerequisites

LLM CLI Installation

This project requires the LLM CLI to be installed. You can install it using Homebrew:

brew install llm

After installation, ensure the llm command is available in your PATH by running:

llm --version

Getting Started

Development

1. Install dependencies:

   npm install
   

2. Start the development server with hot reload:

   npm run dev
   

3. Build the project:

   npm run build
   

4. Run tests:

   npm test
   

5. Start 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:

1. Start the inspector:

   npx @modelcontextprotocol/inspector node dist/index.js
   

2. Open 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:

1. Build and link the package:

   npm run build
   npm run link
   

2. Verify the binary works:

   npx architect-test-mcp-tool
   

3. Add 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-tool
- Click Confirm

4. 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 link

When you're done testing, you can unlink the package:

npm run unlink

This 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:

1. First, build your project:

   npm run build
   

2. Run 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

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.