样板
STDIOMCP样板服务器提供标准化结构构建自定义协议服务器
MCP样板服务器提供标准化结构构建自定义协议服务器
This server implements the Model Context Protocol (MCP) for global use as a boilerplate. It provides a standardized way to connect AI models to different data sources and tools using the Model Context Protocol.
The server currently includes the following example tool:
calculator: Performs basic arithmetic operations (add, subtract, multiply, divide)For information on how to add your own custom tools, check out the Extending the Boilerplate section.
The server configuration is centralized in src/config.ts. This makes it easy to adjust settings without modifying multiple files.
// Essential configuration options export const config = { server: { name: "mcp-boilerplate", version: "1.0.0", port: parseInt(process.env.PORT || "4005"), host: process.env.HOST || "localhost", apiKey: process.env.API_KEY || "dev_key", }, sse: { // How often to send keepalive messages (in milliseconds) keepaliveInterval: 30000, // Whether to send ping events in addition to comments usePingEvents: true, // Initial connection message sendConnectedEvent: true, }, tools: { // Number of retries for failed tool executions maxRetries: 3, // Delay between retries (in milliseconds) retryDelay: 1000, // Whether to send notifications about tool execution status sendNotifications: true, }, logging: { // Default log level defaultLevel: "debug", // How often to send log messages (in milliseconds) logMessageInterval: 10000, }, };
If you're experiencing "Body timeout error" with your MCP connection:
keepaliveInterval to send more frequent keepalive messages (e.g., 15000ms)usePingEvents is enabled for additional connection stabilitynpm install
.env file with the following variables:PORT=4005
API_KEY=your_api_key
npm run build
npm run start:sse
# Start in development mode with hot reloading npm run start # Start with PM2 for production npm run start:pm2 # Development mode with nodemon npm run dev
/health: Health check endpoint that returns server status and version/sse: SSE endpoint for establishing MCP connections (requires API key)/messages: Message handling endpoint for client-server communicationTo connect to this MCP server from different clients, use the appropriate configuration below:
{ "mcpServers": { "mcp-server": { "url": "http://localhost:4005/sse?API_KEY={{your_api_key_here}}" } } }
{ "mcpServers": { "mcp-server": { "command": "npx", "args": [ "mcp-remote", "http://localhost:4005/sse?API_KEY={{your_api_key_here}}" ] } } }
Follow these steps to add a new tool to the MCP server:
Create your tool handler:
src/tools.ts file or create a new file in the src/tools directoryToolHandler interfaceConfigure your tool:
toolConfigs array in src/tools.tsExport and register your tool:
src/tools.tstoolConfigs arrayExample:
// In src/tools.ts (adding directly to the toolConfigs array) { name: "myTool", description: "My tool description", inputSchema: { type: "object" as const, properties: {}, required: [], }, handler: async () => { return createSuccessResult({ result: "Tool result" }); }, }
The server implements comprehensive error handling:
This boilerplate supports the core MCP features:
The server manages client sessions through:
This project is licensed under the MIT License - see the LICENSE file for details.