create-advanced-mcp-server
by bsmi021·★ 2·Score 29
A CLI tool to scaffold MCP servers with web capabilities, TypeScript, and optional database integration.
Overview
This is a CLI generator tool for creating MCP server projects with a well-structured architecture. It supports multiple integration options including Express-based web APIs, WebSocket servers, and Prisma ORM. The generated codebase follows MCP Advanced Node specification with clear separation of concerns across tools, resources, prompts, and services layers.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this tool when you need to build MCP servers with web APIs, real-time capabilities, or database persistence, and want a solid foundation with TypeScript.
When NOT to choose this
Don't choose this if you need a minimal MCP server without web or database features, or if you prefer JavaScript over TypeScript.
Comparable tools
Installation
Install the CLI tool globally:
npm install -g create-advanced-mcp-serverCreate a new MCP server project:
npx create-advanced-mcp-server my-mcp-serverAdd to Claude Desktop by configuring the mcpServers entry:
{
"mcpServers": {
"my-mcp-server": {
"command": "node",
"args": ["/path/to/my-mcp-server/dist/index.js"]
}
}
}FAQ
- What MCP specification does this follow?
- This generator follows the MCP Advanced Node specification, providing a comprehensive structure for MCP server development.
- Can I customize the generated project?
- Yes, the CLI offers multiple configuration options including web API, WebSocket, and database integration that can be selectively enabled or disabled.
Compare create-advanced-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.