MCP Server Starter
About
A production-ready template for creating Model Context Protocol servers with TypeScript, providing tools for efficient testing, development, and deployment.
Details
- Author
- StevenStavrakis
- Repository
- StevenStavrakis/mcp-starter-template
- GitHub stars
- 39
- Downloads
- 324
- License
- MIT License
- Categories
- Developer Tools, Productivity
Jump to
- Bun for fast testing and development
- Biome for linting and formatting
- Automated version management with standard-version
- Clean, maintainable project structure
Setting up with Highlight
Follow these steps to add this server as a custom Highlight plugin:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
MCP Server StarterCommand (node, npx, python, etc.)nodeArguments-
Argument 1
/path/to/your/project/dist/main.js -
Argument 2
some_argument
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
1. Clone the repository
2. Install dependencies:
bun install
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp server starter": {
"cwd": "string",
"env": {},
"args": [
"/path/to/your/project/dist/main.js",
"some_argument"
],
"shell": false,
"command": "node"
}
}
}
Linux
{
"cwd": "string",
"env": [],
"args": [
"/path/to/your/project/dist/main.js",
"some_argument"
],
"shell": false,
"command": "node"
}
Macos
{
"cwd": "string",
"env": [],
"args": [
"/path/to/your/project/dist/main.js",
"some_argument"
],
"shell": false,
"command": "node"
}
Windows
{
"cwd": "string",
"env": [],
"args": [
"/c",
"node",
"/path/to/your/project/dist/main.js",
"some_argument"
],
"shell": false,
"command": "cmd"
}
MCP Server Starter
A production-ready starter template for building Model Context Protocol (MCP) servers with TypeScript.
π Quick Start
1. Clone the repository
2. Install dependencies:
bun install
β¨ Key Features
- Bun for fast testing and development
- Biome for linting and formatting
- Automated version management with standard-version
- Clean, maintainable project structure
π Project Structure
mcp-starter/
βββ src/
β βββ tools/ # MCP tools implementation
β βββ utils/ # Shared utilities
β βββ main.ts # Server entry point
β βββ types.ts # Shared type definitions
βββ tests/ # Test files
βββ biome.json # Linting configuration
βββ tsconfig.json # TypeScript configuration
βββ package.json # Project dependencies
βοΈ Configuration
Creating New Tools
The project includes a script to help create new MCP tools:
bun run scripts/create-tool.ts <tool-name>
This will:
1. Create a new tool directory under src/tools/<tool-name>
2. Generate the basic tool structure including:
- index.ts (main implementation)
- schema.ts (JSON schema for tool parameters)
- test.ts (test file)
3. Update the tools index file to export the new tool
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





