A lightweight, ready-to-use TypeScript template for building Model Context Protocol (MCP) servers. This template provides the essential scaffolding to create custom AI tools that can be seamlessly integrated with large language models.
This template implements a basic MCP server with a sample BMI calculator tool. It demonstrates how to:
npm install
index.ts
- Main server implementation with sample toolpackage.json
- Project dependencies and scriptstsconfig.json
- TypeScript configurationBuild and start the server:
npm start
This will compile the TypeScript code and start the MCP server.
For development, you can:
index.ts
to add your own toolsnpm run build
To create a new tool, follow this pattern in index.ts
:
server.tool(
"your-tool-name",
{
// Define input schema using Zod
paramName: z.string(),
// Add more parameters as needed
},
async ({ paramName }) => ({
content: [{
type: "text",
text: "Your tool's response"
}]
})
);
@modelcontextprotocol/sdk
- Core MCP SDKzod
- Schema validationdotenv
- Environment variable managementtypescript
- TypeScript compilerISC
Contributions are welcome! Please feel free to submit a Pull Request.
A lightweight, ready-to-use TypeScript template for building Model Context Protocol (MCP) servers. This template provides the essential scaffolding to create custom AI tools that can be seamlessly integrated with large language models.
No releases published
No packages published