Description

A production-grade TypeScript template for building robust Model Context Protocol servers, featuring built-in observability.

Installation

npx -y mcp-ts-template
npm install mcp-ts-template
git clone https://github.com/cyanheads/mcp-ts-template

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "mcp-typescript-template": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-ts-template"
      ]
    }
  }
}