openbox-mcp 1.0.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.
Files changed (3) hide show
  1. package/README.md +233 -0
  2. package/dist/bundle.js +35185 -0
  3. package/package.json +40 -0
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "openbox-mcp",
3
+ "version": "1.0.1",
4
+ "description": "MCP server that connects IDEs to OpenBox Bridge API",
5
+ "type": "module",
6
+ "bin": {
7
+ "openbox-mcp": "dist/bundle.js"
8
+ },
9
+ "files": [
10
+ "dist/bundle.js",
11
+ "README.md"
12
+ ],
13
+ "publishConfig": {
14
+ "access": "public",
15
+ "registry": "https://registry.npmjs.org/"
16
+ },
17
+ "scripts": {
18
+ "build": "tsc && node scripts/bundle.mjs",
19
+ "build:types": "tsc",
20
+ "build:bundle": "node scripts/bundle.mjs",
21
+ "dev": "tsx src/cli.ts",
22
+ "start": "node dist/bundle.js",
23
+ "server": "node dist/bundle.js",
24
+ "smoke:stdio": "node scripts/stdio-smoke.mjs",
25
+ "smoke:stdio:taskflow": "node scripts/stdio-smoke.mjs --taskflow-only",
26
+ "smoke:http": "node scripts/http-smoke.mjs",
27
+ "smoke:xai": "node scripts/xai-remote-mcp-smoke.mjs"
28
+ },
29
+ "dependencies": {},
30
+ "devDependencies": {
31
+ "@openbox/bridge-core": "workspace:*",
32
+ "@modelcontextprotocol/sdk": "^1.12.0",
33
+ "@types/node": "^25.5.0",
34
+ "minimatch": "^10.2.4",
35
+ "tsx": "^4.19.0",
36
+ "typescript": "^5.7.0",
37
+ "yaml": "^2.8.3",
38
+ "zod": "^3.24.0"
39
+ }
40
+ }