@nexus-lab/create-mcp-server 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -12
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# create-mcp-server
|
|
1
|
+
# @nexus-lab/create-mcp-server
|
|
2
2
|
|
|
3
3
|
Scaffold a new [Model Context Protocol](https://modelcontextprotocol.io/) server in seconds.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
|
|
6
|
+
npx @nexus-lab/create-mcp-server my-server
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
## Features
|
|
@@ -16,44 +16,44 @@ npm create mcp-server my-server
|
|
|
16
16
|
|
|
17
17
|
## Templates
|
|
18
18
|
|
|
19
|
-
### `minimal`
|
|
19
|
+
### `minimal` (default)
|
|
20
20
|
The simplest possible MCP server. One tool, stdio transport.
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
|
|
23
|
+
npx @nexus-lab/create-mcp-server my-server --template minimal
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
### `full`
|
|
27
27
|
Tools, resources, prompts, and testing all wired up.
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
|
|
30
|
+
npx @nexus-lab/create-mcp-server my-server --template full
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
### `http`
|
|
34
34
|
Streamable HTTP transport with Express. Ready for remote deployment.
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
|
-
|
|
37
|
+
npx @nexus-lab/create-mcp-server my-server --template http
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
## Usage
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
43
|
# Interactive mode
|
|
44
|
-
|
|
44
|
+
npx @nexus-lab/create-mcp-server
|
|
45
45
|
|
|
46
46
|
# With project name
|
|
47
|
-
|
|
47
|
+
npx @nexus-lab/create-mcp-server my-server
|
|
48
48
|
|
|
49
49
|
# With template
|
|
50
|
-
|
|
50
|
+
npx @nexus-lab/create-mcp-server my-server --template full
|
|
51
51
|
|
|
52
52
|
# Skip npm install
|
|
53
|
-
|
|
53
|
+
npx @nexus-lab/create-mcp-server my-server --no-install
|
|
54
54
|
|
|
55
55
|
# Skip git init
|
|
56
|
-
|
|
56
|
+
npx @nexus-lab/create-mcp-server my-server --no-git
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
## What you get
|
|
@@ -102,4 +102,4 @@ To use with Claude Code, add to your MCP config:
|
|
|
102
102
|
|
|
103
103
|
## License
|
|
104
104
|
|
|
105
|
-
MIT — [Nexus Lab](https://github.com/nexus-lab)
|
|
105
|
+
MIT — [Nexus Lab](https://github.com/jk0236158-design/nexus-lab)
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ const program = new Command();
|
|
|
7
7
|
program
|
|
8
8
|
.name("create-mcp-server")
|
|
9
9
|
.description("Scaffold a new MCP server project with TypeScript and secure defaults")
|
|
10
|
-
.version("0.1.
|
|
10
|
+
.version("0.1.1")
|
|
11
11
|
.argument("[project-name]", "Name of the project to create")
|
|
12
12
|
.option("-t, --template <template>", "Template to use (minimal, full, http)", "minimal")
|
|
13
13
|
.option("--no-install", "Skip npm install")
|