★ 0 stars
TypeScript
🤖 AI/LLM
Updated today
Production-ready Model Context Protocol (MCP) server boilerplate in TypeScript. Clone, build, and connect to Claude Desktop, Cursor, or Cline in under 2 minutes.
View on GitHub →
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-server-starter": {
"command": "npx",
"args": [
"-y",
"mcp-finder/mcp-server-starter"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add mcp-server-starter npx -y mcp-finder/mcp-server-starter
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-server-starter": {
"command": "npx",
"args": [
"-y",
"mcp-finder/mcp-server-starter"
]
}
}
}
📋 Copy