@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 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
- # Development server with playground
70
- npm run dev
69
+ # Compile TypeScript
70
+ pnpm run build
71
71
 
72
- # Build for HTTP
73
- npm run build:http
72
+ # Start STDIO server
73
+ pnpm run start
74
74
 
75
- # Start HTTP server
76
- npm run start:http
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
- npm install
382
+ pnpm install
383
383
 
384
- # Build for STDIO (traditional)
385
- npm run build:stdio
384
+ # Build TypeScript
385
+ pnpm run build
386
386
 
387
- # Build for HTTP (Smithery)
388
- npm run build:http
387
+ # Start the STDIO server
388
+ pnpm run start
389
389
 
390
390
  # Development server
391
- npm run dev
391
+ pnpm run dev
392
392
  ```
393
393
 
394
394
  ## License