@chapterai/mcp 0.1.0 → 0.1.2
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/dist/index.js +732 -382
- package/package.json +12 -11
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chapterai/mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Chapter MCP server — gives AI agents access to Chapter projects, files,
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Chapter MCP server — gives AI agents access to Chapter projects, files, changes, and history",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"chapter-mcp": "./dist/index.js"
|
|
@@ -12,18 +12,19 @@
|
|
|
12
12
|
"publishConfig": {
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "tsup --watch",
|
|
17
|
+
"build": "tsup",
|
|
18
|
+
"prepublishOnly": "pnpm build",
|
|
19
|
+
"typecheck": "tsc --noEmit"
|
|
20
|
+
},
|
|
15
21
|
"devDependencies": {
|
|
16
22
|
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
17
23
|
"@trpc/client": "^11.0.0",
|
|
18
24
|
"zod": "^3.24.2",
|
|
25
|
+
"@chapter/server": "workspace:*",
|
|
26
|
+
"@chapter/shared": "workspace:*",
|
|
19
27
|
"@types/node": "^22.13.5",
|
|
20
|
-
"tsup": "^8.4.0"
|
|
21
|
-
"@chapter/server": "0.0.0",
|
|
22
|
-
"@chapter/shared": "0.0.0"
|
|
23
|
-
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"dev": "tsup --watch",
|
|
26
|
-
"build": "tsup",
|
|
27
|
-
"typecheck": "tsc --noEmit"
|
|
28
|
+
"tsup": "^8.4.0"
|
|
28
29
|
}
|
|
29
|
-
}
|
|
30
|
+
}
|