node-lab-mcp 0.1.0

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.
Files changed (2) hide show
  1. package/dist/index.js +27225 -0
  2. package/package.json +49 -0
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "node-lab-mcp",
3
+ "version": "0.1.0",
4
+ "description": "MCP server to drive the IFR Node Lab graph from any MCP client (Claude / Codex / Gemini …) — locally or, via a PartyKit relay, against the deployed app.",
5
+ "type": "module",
6
+ "bin": {
7
+ "node-lab-mcp": "dist/index.js"
8
+ },
9
+ "main": "dist/index.js",
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "engines": {
14
+ "node": ">=20"
15
+ },
16
+ "keywords": [
17
+ "mcp",
18
+ "model-context-protocol",
19
+ "ifr",
20
+ "node-lab",
21
+ "partykit"
22
+ ],
23
+ "license": "MIT",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/DigitalPine/Beardy-Tag-VR.git",
27
+ "directory": "node-lab/mcp"
28
+ },
29
+ "scripts": {
30
+ "build": "node build.mjs",
31
+ "lint": "tsc --noEmit",
32
+ "test": "vitest run --passWithNoTests",
33
+ "dev": "tsx server.ts",
34
+ "start": "node dist/index.js",
35
+ "release": "npm version patch --tag-version-prefix=node-lab-mcp-v && git push --follow-tags"
36
+ },
37
+ "devDependencies": {
38
+ "@modelcontextprotocol/sdk": "^1.29.0",
39
+ "@types/node": "^22.10.0",
40
+ "@types/ws": "^8.18.1",
41
+ "esbuild": "^0.24.2",
42
+ "partysocket": "^1.1.19",
43
+ "tsx": "^4.22.3",
44
+ "typescript": "^5.6.3",
45
+ "vitest": "^2.1.8",
46
+ "ws": "^8.21.0",
47
+ "zod": "^3.23.8"
48
+ }
49
+ }