shellsage-ai/mcp-server-boilerplate
š š š - Production-ready MCP server starter templates in TypeScript and Python. Includes tool, resource, and prompt patterns with Claude Desktop integration configs.
Quick Install
{
"mcpServers": {
"shellsage-ai-mcp-server-boilerplate": {
"command": "npx",
"args": [
"-y",
"shellsage-ai-mcp-server-boilerplate"
]
}
}
}Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.
Documentation Overview
MCP Server Boilerplate
Production-ready starter templates for building Model Context Protocol servers in TypeScript and Python.
Skip the boilerplate. Start building tools your AI agents can actually use.
Server Capabilities
This boilerplate ships with working examples of all three MCP primitives:
Tools
| Tool | Description | Parameters |
|---|---|---|
echo | Echo a message back to the caller | message (string, required) |
timestamp | Get the current UTC timestamp | (none) |
Resources
| URI | Description | MIME Type |
|---|---|---|
server://info | Server metadata (name, version, available tools) | application/json |
Prompts
No prompt templates are registered in the starter. The full kit includes prompt template patterns.
What's Included (Free)
TypeScript Quickstart
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
const server = new McpServer({
name: "my-mcp-server",
version: "1.0.0",
});
// Register a tool
server.tool("hello", { name: { type: "string" } }, async ({ name }) => ({
content: [{ type: "text", text: `Hello, ${name}!` }],
}));
// Connect via stdio
const transport = new StdioServerTransport();
await server.connect(transport);
Python Quickstart
from mcp.server import Server
from mcp.server.stdio import stdio_server
app = Server("my-mcp-server")
@app.tool()
async def hello(name: str) -> str:
"""Say hello to someone."""
return f"Hello, {name}!"
async def main():
async with stdio_server() as (read, write):
await app.run(read, write)
Claude Desktop Configuration
{
"mcpServers": {
"my-server": {
"command": "npx",
"args": ["tsx", "src/index.ts"]
}
}
}
Project Structure
my-mcp-server/
āāā src/
ā āāā index.ts # Server entry point
āāā tools/
ā āāā example.ts # Tool definitions
āāā resources/
ā āāā example.ts # Resource providers
āāā package.json
āāā tsconfig.json
āāā claude_desktop_config.json
Getting Started
- Clone this repo
npm installnpm run build- Add to your Claude Desktop config
- Start building tools
Going Further
This free boilerplate gets you started. The MCP Server Boilerplate Kit ($49) includes:
- ā Full TypeScript + Python dual-language templates
- ā Docker containerization with multi-stage builds
- ā CI/CD pipeline (GitHub Actions) for automated testing & deployment
- ā SSE (Server-Sent Events) transport for web deployments
- ā 15+ pre-built tool examples (file ops, API calls, database queries)
- ā Resource and prompt template patterns
- ā Error handling, logging, and retry patterns
- ā Testing framework with mock MCP client
- ā Production deployment guide (Docker, systemd, cloud)
- ā Claude Desktop + Cursor + Windsurf integration configs
Resources
License
MIT ā use this however you want.