@putervision/behavior-mcp 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/CONTRIBUTING.md +7 -0
- package/LICENSE +21 -0
- package/PROJECT_INSTRUCTIONS_TEMPLATE.md +9 -0
- package/README.md +94 -0
- package/SECURITY.md +11 -0
- package/dist/chunk-FXYS43D6.js +291 -0
- package/dist/chunk-FXYS43D6.js.map +1 -0
- package/dist/chunk-L2LJRSDU.js +608 -0
- package/dist/chunk-L2LJRSDU.js.map +1 -0
- package/dist/chunk-MXYFWAJG.js +1176 -0
- package/dist/chunk-MXYFWAJG.js.map +1 -0
- package/dist/chunk-NCJFRFRK.js +399 -0
- package/dist/chunk-NCJFRFRK.js.map +1 -0
- package/dist/chunk-QU5PNQP4.js +266 -0
- package/dist/chunk-QU5PNQP4.js.map +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +169 -0
- package/dist/cli.js.map +1 -0
- package/dist/db-ZOU6XEDM.js +35 -0
- package/dist/db-ZOU6XEDM.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +100 -0
- package/dist/index.js.map +1 -0
- package/dist/init-QMBHF4FZ.js +15 -0
- package/dist/init-QMBHF4FZ.js.map +1 -0
- package/dist/lib.d.ts +672 -0
- package/dist/lib.js +443 -0
- package/dist/lib.js.map +1 -0
- package/glama.json +44 -0
- package/manifest.json +26 -0
- package/package.json +133 -0
- package/server.json +42 -0
package/package.json
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@putervision/behavior-mcp",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "High-frequency in-browser behavior tree execution engine for autonomous AI agents — 60Hz tick loops, reactive triggers, telemetry recordings, and safety guardrails.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"mcp-server",
|
|
8
|
+
"model-context-protocol",
|
|
9
|
+
"model-context-protocol-server",
|
|
10
|
+
"behavior-tree",
|
|
11
|
+
"behavior-mcp",
|
|
12
|
+
"behavior-runtime",
|
|
13
|
+
"60hz",
|
|
14
|
+
"in-browser-execution",
|
|
15
|
+
"playwright",
|
|
16
|
+
"browser-automation",
|
|
17
|
+
"game-ai",
|
|
18
|
+
"agent-runtime",
|
|
19
|
+
"reactive-triggers",
|
|
20
|
+
"telemetry",
|
|
21
|
+
"action-replay",
|
|
22
|
+
"rate-limiter",
|
|
23
|
+
"putervision",
|
|
24
|
+
"ai-agents",
|
|
25
|
+
"ai-assistant",
|
|
26
|
+
"cursor",
|
|
27
|
+
"cursor-rules",
|
|
28
|
+
"claude-code",
|
|
29
|
+
"windsurf",
|
|
30
|
+
"sqlite",
|
|
31
|
+
"developer-tools"
|
|
32
|
+
],
|
|
33
|
+
"homepage": "https://github.com/putervision/behavior-mcp#readme",
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/putervision/behavior-mcp/issues"
|
|
36
|
+
},
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/putervision/behavior-mcp.git"
|
|
40
|
+
},
|
|
41
|
+
"mcpName": "io.github.putervision/behavior-mcp",
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"author": "PuterVision",
|
|
47
|
+
"type": "module",
|
|
48
|
+
"main": "./dist/index.js",
|
|
49
|
+
"types": "./dist/index.d.ts",
|
|
50
|
+
"exports": {
|
|
51
|
+
".": {
|
|
52
|
+
"types": "./dist/index.d.ts",
|
|
53
|
+
"import": "./dist/index.js"
|
|
54
|
+
},
|
|
55
|
+
"./lib": {
|
|
56
|
+
"types": "./dist/lib.d.ts",
|
|
57
|
+
"import": "./dist/lib.js"
|
|
58
|
+
},
|
|
59
|
+
"./cli": {
|
|
60
|
+
"types": "./dist/cli.d.ts",
|
|
61
|
+
"import": "./dist/cli.js"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"bin": {
|
|
65
|
+
"behavior-mcp": "./dist/cli.js"
|
|
66
|
+
},
|
|
67
|
+
"files": [
|
|
68
|
+
"dist",
|
|
69
|
+
"README.md",
|
|
70
|
+
"LICENSE",
|
|
71
|
+
"CONTRIBUTING.md",
|
|
72
|
+
"SECURITY.md",
|
|
73
|
+
"server.json",
|
|
74
|
+
"manifest.json",
|
|
75
|
+
"glama.json",
|
|
76
|
+
"PROJECT_INSTRUCTIONS_TEMPLATE.md"
|
|
77
|
+
],
|
|
78
|
+
"scripts": {
|
|
79
|
+
"build": "tsup",
|
|
80
|
+
"ci": "npm run format:check && npm run lint && npm run typecheck && npm run test && npm run build",
|
|
81
|
+
"cli": "node dist/cli.js",
|
|
82
|
+
"dev": "tsup --watch --onSuccess \"node dist/index.js\"",
|
|
83
|
+
"format": "prettier --write src/**/*.ts tests/**/*.ts",
|
|
84
|
+
"format:check": "prettier --check src/**/*.ts tests/**/*.ts",
|
|
85
|
+
"lint": "eslint src/**/*.ts",
|
|
86
|
+
"prepublishOnly": "npm run build",
|
|
87
|
+
"release": "npm publish",
|
|
88
|
+
"start": "node dist/index.js",
|
|
89
|
+
"test": "vitest run",
|
|
90
|
+
"test:coverage": "vitest run --coverage",
|
|
91
|
+
"test:unit": "vitest run tests/unit",
|
|
92
|
+
"test:integration": "vitest run tests/integration",
|
|
93
|
+
"test:matrix": "bash scripts/test-matrix.sh",
|
|
94
|
+
"test:watch": "vitest",
|
|
95
|
+
"typecheck": "tsc --noEmit"
|
|
96
|
+
},
|
|
97
|
+
"peerDependencies": {
|
|
98
|
+
"playwright": "^1.40.0"
|
|
99
|
+
},
|
|
100
|
+
"peerDependenciesMeta": {
|
|
101
|
+
"playwright": {
|
|
102
|
+
"optional": true
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"dependencies": {
|
|
106
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
107
|
+
"better-sqlite3": "^11.0.0",
|
|
108
|
+
"zod": "^3.23.8"
|
|
109
|
+
},
|
|
110
|
+
"devDependencies": {
|
|
111
|
+
"@eslint/js": "^9.39.4",
|
|
112
|
+
"@types/better-sqlite3": "^7.6.10",
|
|
113
|
+
"@types/node": "^20.12.0",
|
|
114
|
+
"@vitest/coverage-v8": "^4.1.10",
|
|
115
|
+
"eslint": "^10.8.0",
|
|
116
|
+
"jsdom": "^24.0.0",
|
|
117
|
+
"@types/jsdom": "^21.1.6",
|
|
118
|
+
"prettier": "^3.9.6",
|
|
119
|
+
"tsup": "^8.1.0",
|
|
120
|
+
"typescript": "^5.5.2",
|
|
121
|
+
"typescript-eslint": "^8.63.0",
|
|
122
|
+
"vitest": "^4.1.10"
|
|
123
|
+
},
|
|
124
|
+
"overrides": {
|
|
125
|
+
"@hono/node-server": "^2.0.5",
|
|
126
|
+
"esbuild": "^0.28.1",
|
|
127
|
+
"nanoid": "^3.3.18",
|
|
128
|
+
"vite": "^6.0.0"
|
|
129
|
+
},
|
|
130
|
+
"engines": {
|
|
131
|
+
"node": ">=18.18.0"
|
|
132
|
+
}
|
|
133
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.putervision/behavior-mcp",
|
|
4
|
+
"version": "0.1.1",
|
|
5
|
+
"title": "Behavior Runtime MCP",
|
|
6
|
+
"description": "High-frequency in-browser behavior tree runtime for AI agents — 60Hz tick loops and reactive triggers.",
|
|
7
|
+
"publisher": "PuterVision",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"websiteUrl": "https://behaviormcp.com",
|
|
10
|
+
"status": "active",
|
|
11
|
+
"icons": [
|
|
12
|
+
{
|
|
13
|
+
"src": "https://putervision.github.io/behavior-mcp/behavior-icon.png",
|
|
14
|
+
"sizes": [
|
|
15
|
+
"512x512"
|
|
16
|
+
],
|
|
17
|
+
"mimeType": "image/png"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/putervision/behavior-mcp",
|
|
23
|
+
"source": "github"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/putervision/behavior-mcp/issues"
|
|
27
|
+
},
|
|
28
|
+
"packages": [
|
|
29
|
+
{
|
|
30
|
+
"registryType": "npm",
|
|
31
|
+
"identifier": "@putervision/behavior-mcp",
|
|
32
|
+
"version": "0.1.1",
|
|
33
|
+
"transport": {
|
|
34
|
+
"type": "stdio"
|
|
35
|
+
},
|
|
36
|
+
"executable": "behavior-mcp",
|
|
37
|
+
"args": [
|
|
38
|
+
"run"
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|