@nekzus/mcp-server 1.19.0-alpha.6 → 1.19.0-alpha.9
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/.tsbuildinfo +1 -1
- package/dist/index.d.ts +2 -35
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +64 -61
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -66,14 +66,14 @@ This MCP server now supports both STDIO and HTTP streamable transport. Your exis
|
|
|
66
66
|
|
|
67
67
|
**Development commands:**
|
|
68
68
|
```bash
|
|
69
|
-
#
|
|
70
|
-
|
|
69
|
+
# Compile TypeScript
|
|
70
|
+
pnpm run build
|
|
71
71
|
|
|
72
|
-
#
|
|
73
|
-
|
|
72
|
+
# Start STDIO server
|
|
73
|
+
pnpm run start
|
|
74
74
|
|
|
75
|
-
#
|
|
76
|
-
|
|
75
|
+
# Development server with playground
|
|
76
|
+
pnpm run dev
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
### Install in VS Code
|
|
@@ -379,16 +379,16 @@ The server also provides the following informational resources accessible via MC
|
|
|
379
379
|
|
|
380
380
|
```bash
|
|
381
381
|
# Install dependencies
|
|
382
|
-
|
|
382
|
+
pnpm install
|
|
383
383
|
|
|
384
|
-
# Build
|
|
385
|
-
|
|
384
|
+
# Build TypeScript
|
|
385
|
+
pnpm run build
|
|
386
386
|
|
|
387
|
-
#
|
|
388
|
-
|
|
387
|
+
# Start the STDIO server
|
|
388
|
+
pnpm run start
|
|
389
389
|
|
|
390
390
|
# Development server
|
|
391
|
-
|
|
391
|
+
pnpm run dev
|
|
392
392
|
```
|
|
393
393
|
|
|
394
394
|
## License
|