MCP TypeScript Server Template
A template repository for building Model Context Protocol (MCP) servers with TypeScript.
Features
- ๐ Full TypeScript support with strict mode
- ๐งช Testing setup with Vitest and coverage reporting
- ๐ฆ Automated releases with semantic-release
- ๐ CI/CD pipelines with GitHub Actions
- ๐๏ธ Modular architecture for easy extension
- ๐ Comprehensive documentation and examples
- ๐ ๏ธ Development tools: Biome for linting/formatting, Husky for Git hooks
- ๐ฏ Pre-configured for MCP server development
- ๐ Built-in validation using Zod schemas
- โก ES modules with native Node.js support
- ๐ Code coverage reporting with c8
MCP Servers Built with This Template
Here are some MCP servers built using this template:
Wayback Machine MCP
Archive and retrieve web pages using the Internet Archive's Wayback Machine. No API keys required.
OpenAlex MCP
Access scholarly articles and research data from the OpenAlex database.
Building an MCP server? Use this template and add your server to this list!
Quick Start
Using GitHub Template
- Click "Use this template" button on GitHub
- Clone your new repository
- Install dependencies:
yarn install - Start development:
yarn dev
Manual Setup
# Clone the template
git clone https://github.com/Mearman/mcp-template.git my-mcp-server
cd my-mcp-server
# Install dependencies
yarn install
# Start development
yarn dev
Project Structure
src/
โโโ index.ts # MCP server entry point
โโโ tools/ # Tool implementations
โ โโโ example.ts # Example tool
โ โโโ *.test.ts # Tool tests
โโโ utils/ # Shared utilities
โ โโโ validation.ts # Input validation helpers
โ โโโ *.test.ts # Utility tests
โโโ types.ts # TypeScript type definitions
# Configuration files
โโโ .github/workflows/ # CI/CD pipelines
โโโ .husky/ # Git hooks
โโโ biome.json # Linter/formatter config
โโโ tsconfig.json # TypeScript config
โโโ vitest.config.ts # Test runner config
โโโ .releaserc.json # Semantic release config
Development
Available Commands
# Install dependencies
yarn install
# Development with hot reload
yarn dev
# Build TypeScript to JavaScript
yarn build
# Run production build
yarn start
# Run tests
yarn test
# Run tests in watch mode
yarn test:watch
# Run tests with coverage report
yarn test:ci
# Lint code
yarn lint
# Auto-fix linting issues
yarn lint:fix
# Format code
yarn format
Development Workflow
- Start development:
yarn dev- Runs the server with hot reload - Write tests: Add
.test.tsfiles alongside your code - Run tests:
yarn test:watch- Keep tests running while you code - Lint/format: Automatic on commit via Husky hooks
Creating Your MCP Server
1. Define Your Tools
Create tool implementations in src/tools/:
// src/tools/my-tool.ts
import { z } from 'zod';
const MyToolSchema = z.object({
input: z.string().describe('Tool input'),
});
export async function myTool(args: unknown) {
const { input } = MyToolSchema.parse(args);
// Tool implementation
return {
success: true,
result: `Processed: ${input}`,
};
}
2. Register Tools in Server
Update src/index.ts to register your tools:
server.setRequestHandler(ListToolsRequestSchema, async () => ({
tools: [
{
name: 'my_tool',
description: 'Description of what my tool does',
inputSchema: zodToJsonSchema(MyToolSchema),
},
],
}));
server.setRequestHandler(CallToolRequestSchema, async (request) => {
switch (request.params.name) {
case 'my_tool':
return await myTool(request.params.arguments);
default:
throw new Error(`Unknown tool: ${request.params.name}`);
}
});
3. Configure for Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"my-mcp-server": {
"command": "node",
"args": ["/path/to/my-mcp-server/dist/index.js"],
"env": {}
}
}
}
Testing
Write tests for your tools in src/tools/*.test.ts:
import { describe, it, expect } from 'vitest';
import { myTool } from './my-tool';
describe('myTool', () => {
it('should process input correctly', async () => {
const result = await myTool({ input: 'test' });
expect(result.success).toBe(true);
expect(result.result).toBe('Processed: test');
});
});
Publishing
NPM Package
Update
package.jsonwith your package details:name: Your package name (e.g.,mcp-your-server)description: Clear description of what your server doeskeywords: Add relevant keywords for discoverabilityauthor: Your name or organizationrepository: Your GitHub repository URL
Build the project:
yarn buildTest the build locally:
yarn startPublish to npm:
npm publish
Automated Releases
This template includes semantic-release for automated versioning and publishing:
- Follow conventional commits
- Push to main branch
- CI/CD will automatically:
- Determine version bump
- Update CHANGELOG.md
- Create GitHub release
- Publish to npm (if NPM_TOKEN secret is configured)
Note: NPM publishing is optional. If you don't want to publish to npm, simply don't add the NPM_TOKEN secret to your repository. The release process will still create GitHub releases.
Best Practices
- Input Validation: Always validate tool inputs using Zod schemas
- Error Handling: Provide clear error messages for debugging
- Testing: Write comprehensive tests for all tools
- Documentation: Document each tool's purpose and usage
- Type Safety: Leverage TypeScript's type system fully
- Modular Design: Keep tools focused on single responsibilities
- Async/Await: Use modern async patterns for all I/O operations
- Environment Variables: Use
.envfiles for configuration (never commit secrets)
Adding CLI Support
To add CLI functionality to your MCP server (like the Wayback Machine example):
Install Commander.js:
yarn add commander chalk oraCreate
src/cli.ts:import { Command } from 'commander'; import chalk from 'chalk'; export function createCLI() { const program = new Command(); program .name('your-tool') .description('Your MCP server as a CLI') .version('1.0.0'); // Add commands here return program; }Update
src/index.tsto detect CLI mode:async function main() { const isCliMode = process.stdin.isTTY || process.argv.length > 2; if (isCliMode && process.argv.length > 2) { const { createCLI } = await import('./cli.js'); const program = createCLI(); await program.parseAsync(process.argv); } else { // MCP server mode const transport = new StdioServerTransport(); await server.connect(transport); } }Add bin entry to
package.json:"bin": { "your-tool": "dist/index.js" }
License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
Contributing
Contributions are welcome! Please read our contributing guidelines and submit pull requests to our repository.
Troubleshooting
Common Issues
- Build errors: Ensure all dependencies are installed with
yarn install - Type errors: Run
npx tsc --noEmitto check TypeScript types - Test failures: Check test files are named
*.test.ts - Claude Desktop connection: Verify the path in your config is absolute
Debug Mode
To see detailed logs when running as an MCP server:
DEBUG=* node dist/index.js
Resources
- Model Context Protocol Documentation
- MCP TypeScript SDK
- Creating MCP Servers Guide
- Awesome MCP Servers - Community-curated list
- MCP Discord - Get help and share your servers