@chapterai/mcp 0.2.0 → 0.3.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 (2) hide show
  1. package/dist/index.js +6342 -10872
  2. package/package.json +6 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chapterai/mcp",
3
- "version": "0.2.0",
4
- "description": "Chapter MCP server gives AI agents access to Chapter projects, files, changes, and history",
3
+ "version": "0.3.1",
4
+ "description": "Chapter MCP server: set your app up in the Showroom and make demos of it",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "chapter-mcp": "./dist/index.js"
@@ -18,13 +18,16 @@
18
18
  "zod": "^3.24.2",
19
19
  "@types/node": "^22.13.5",
20
20
  "tsup": "^8.4.0",
21
+ "vitest": "^4.0.18",
21
22
  "@chapter/server": "0.0.0",
22
23
  "@chapter/shared": "0.0.0",
23
- "@chapter/engine": "0.0.0"
24
+ "@chapter/engine": "0.0.0",
25
+ "@chapter/stage": "0.0.0"
24
26
  },
25
27
  "scripts": {
26
28
  "dev": "tsup --watch",
27
29
  "build": "tsup",
30
+ "test": "vitest run",
28
31
  "typecheck": "tsc --noEmit"
29
32
  }
30
33
  }