You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+45-7Lines changed: 45 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,12 @@
1
-
# Create MCP CLI
1
+
# MCP Server Generator
2
2
3
-
A modern CLI tool for generating production-ready Model Context Protocol (MCP) servers. Built with clean architecture and advanced MCP features, this tool creates servers that demonstrate all MCP capabilities through one cohesive example.
3
+
A modern CLI tool for generating production-ready Model Context Protocol (MCP) servers with comprehensive **Data Analysis Assistant** capabilities. Built with clean architecture and advanced MCP features, this tool creates servers that demonstrate all MCP capabilities through one cohesive example instead of scattered demos.
> **📦 Available on npm**: [`mcp-server-generator`](https://www.npmjs.com/package/mcp-server-generator) - 442kB of production-ready MCP server templates
4
10
5
11
## ✨ **Modern Architecture**
6
12
@@ -15,10 +21,23 @@ A modern CLI tool for generating production-ready Model Context Protocol (MCP) s
15
21
16
22
```bash
17
23
# Create a comprehensive MCP server with Data Analysis Assistant
18
-
npx create-mcp my-analysis-server
24
+
npx mcp-server-generator my-analysis-server
25
+
26
+
# Alternative command (backwards compatibility)
27
+
npx mcp-server-generator my-analysis-server
19
28
20
29
# Or specify custom options
21
-
npx create-mcp my-analysis-server --transport both --skip-install
30
+
npx mcp-server-generator my-analysis-server --transport both --skip-install
31
+
```
32
+
33
+
## 📦 Quick Installation
34
+
35
+
```bash
36
+
# One-time usage (recommended)
37
+
npx mcp-server-generator my-project
38
+
39
+
# Global installation
40
+
npm install -g mcp-server-generator
22
41
```
23
42
24
43
## CLI Options
@@ -154,7 +173,7 @@ After creating a project, you get a comprehensive Data Analysis Assistant:
154
173
155
174
```bash
156
175
# Create and enter project
157
-
npx create-mcp my-analysis-server
176
+
npx mcp-server-generator my-analysis-server
158
177
cd my-analysis-server
159
178
160
179
# 1️⃣ See everything at once
@@ -261,7 +280,7 @@ npm run build
261
280
262
281
# Test locally
263
282
npm link
264
-
create-mcp test-analysis-server
283
+
mcp-server-generator test-analysis-server
265
284
```
266
285
267
286
### Generated Project Dependencies
@@ -414,4 +433,23 @@ This project is inspired by and builds upon:
414
433
415
434
---
416
435
417
-
**Create MCP CLI** - Generate production-ready Model Context Protocol servers with comprehensive Data Analysis Assistant and integrated testing.
436
+
**MCP Server Generator** - Generate production-ready Model Context Protocol servers with comprehensive Data Analysis Assistant and integrated testing.
Copy file name to clipboardExpand all lines: package.json
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "mcp-server-generator",
3
-
"version": "1.0.0",
3
+
"version": "1.0.2",
4
4
"description": "Advanced CLI generator for production-ready Model Context Protocol (MCP) servers with comprehensive Data Analysis Assistant, 8 tools, 9 resources, and 3 intelligent prompts",
0 commit comments