@contractspec/app.alpic-mcp 2.9.0 → 3.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.
- package/AGENTS.md +38 -0
- package/CHANGELOG.md +24 -0
- package/package.json +7 -7
package/AGENTS.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# AI Agent Guide — `alpic-mcp`
|
|
2
|
+
|
|
3
|
+
Scope: `packages/apps/alpic-mcp/*`
|
|
4
|
+
|
|
5
|
+
MCP (Model Context Protocol) server for Alpic. Exposes ContractSpec documentation and tooling to AI agents via the MCP standard.
|
|
6
|
+
|
|
7
|
+
## Quick Context
|
|
8
|
+
|
|
9
|
+
- **Layer**: app
|
|
10
|
+
- **Consumers**: AI agents, IDE integrations, MCP clients
|
|
11
|
+
|
|
12
|
+
## Architecture
|
|
13
|
+
|
|
14
|
+
- Uses `@contractspec/bundle.alpic` for Alpic business logic
|
|
15
|
+
- Uses `@contractspec/lib.logger` for structured logging
|
|
16
|
+
- Built with tsdown; runs as a Node.js server
|
|
17
|
+
|
|
18
|
+
## Key Files
|
|
19
|
+
|
|
20
|
+
- `src/server.ts` — MCP server entry point
|
|
21
|
+
- `src/index.ts` — Library exports
|
|
22
|
+
|
|
23
|
+
## Public Exports
|
|
24
|
+
|
|
25
|
+
- `.` → `dist/index.mjs`
|
|
26
|
+
- `./server` → `dist/server.mjs`
|
|
27
|
+
|
|
28
|
+
## Guardrails
|
|
29
|
+
|
|
30
|
+
- MCP protocol compliance is critical — do not break tool/resource schemas
|
|
31
|
+
- Keep server startup fast; defer heavy initialization
|
|
32
|
+
|
|
33
|
+
## Local Commands
|
|
34
|
+
|
|
35
|
+
- Build: `bun run build`
|
|
36
|
+
- Dev: `bun run dev`
|
|
37
|
+
- Start: `bun run start`
|
|
38
|
+
- Lint: `bun run lint`
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @contractspec/app.alpic-mcp
|
|
2
2
|
|
|
3
|
+
## 3.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 28987eb: chore: upgrade dependencies
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [28987eb]
|
|
12
|
+
- @contractspec/bundle.alpic@3.1.0
|
|
13
|
+
- @contractspec/lib.logger@3.1.0
|
|
14
|
+
|
|
15
|
+
## 3.0.0
|
|
16
|
+
|
|
17
|
+
### Major Changes
|
|
18
|
+
|
|
19
|
+
- b781ce6: feat: improve ai readiness
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [b781ce6]
|
|
24
|
+
- @contractspec/bundle.alpic@3.0.0
|
|
25
|
+
- @contractspec/lib.logger@3.0.0
|
|
26
|
+
|
|
3
27
|
## 2.9.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/app.alpic-mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"start": "node dist/server.js"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@contractspec/bundle.alpic": "
|
|
18
|
-
"@contractspec/lib.logger": "
|
|
17
|
+
"@contractspec/bundle.alpic": "3.1.0",
|
|
18
|
+
"@contractspec/lib.logger": "3.1.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@contractspec/tool.tsdown": "
|
|
22
|
-
"@contractspec/tool.typescript": "
|
|
23
|
-
"@types/node": "^25.3.
|
|
24
|
-
"tsdown": "^0.
|
|
21
|
+
"@contractspec/tool.tsdown": "3.1.0",
|
|
22
|
+
"@contractspec/tool.typescript": "3.1.0",
|
|
23
|
+
"@types/node": "^25.3.5",
|
|
24
|
+
"tsdown": "^0.21.0",
|
|
25
25
|
"typescript": "^5.9.3"
|
|
26
26
|
},
|
|
27
27
|
"license": "MIT",
|