@aionis/mcp 0.1.5 → 0.1.7
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/README.md +23 -1
- package/dist/server.js +1 -1
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
MCP stdio bridge for Aionis execution memory.
|
|
4
4
|
|
|
5
|
+
Docs: [https://docs.aionis.work/integrations/mcp](https://docs.aionis.work/integrations/mcp)
|
|
6
|
+
|
|
5
7
|
Use this package when you want Claude Code, Cursor, or another MCP client to
|
|
6
8
|
try Aionis without rewriting the host Agent loop first.
|
|
7
9
|
|
|
@@ -25,7 +27,7 @@ The server exposes stable product tools, not internal Runtime packets:
|
|
|
25
27
|
| Tool | Purpose |
|
|
26
28
|
|---|---|
|
|
27
29
|
| `aionis_context` | Compile governed Agent context for the current run. Optionally records a lightweight observation first. |
|
|
28
|
-
| `aionis_record_step` | Record a planner/worker/verifier/reviewer step. Feedback attribution is optional. |
|
|
30
|
+
| `aionis_record_step` | Record a planner/worker/verifier/reviewer step, including planner plan assets and rejected branch evidence. Feedback attribution is optional. |
|
|
29
31
|
| `aionis_handoff` | Record branch-aware multi-agent handoff state. |
|
|
30
32
|
| `aionis_remember` | Store ordinary project memory through the governed observe path. |
|
|
31
33
|
| `aionis_govern_memory` | Route external Mem0/Zep/vector/markdown candidates through Aionis Memory Firewall before prompt use. |
|
|
@@ -46,6 +48,20 @@ Runtime guide, and `budget_profile`, `max_prompt_chars`, `repo_state`, and
|
|
|
46
48
|
For example, pass `repo_state.missing_files` so Aionis can tell the Agent that a
|
|
47
49
|
missing active target is pending work rather than stale memory.
|
|
48
50
|
|
|
51
|
+
For Claude Code or Cursor demos, the recommended flow is:
|
|
52
|
+
|
|
53
|
+
1. Use `aionis_record_step` as a planner to record the accepted plan,
|
|
54
|
+
active targets, acceptance checks, and execution boundary.
|
|
55
|
+
2. Use `aionis_record_step` again for any rejected branch as `outcome:
|
|
56
|
+
"failed"` with the rejected target files.
|
|
57
|
+
3. Ask `aionis_context` for the worker/reviewer context before implementation.
|
|
58
|
+
4. Use `aionis_flight_recorder` after the run to replay which plan memories and
|
|
59
|
+
failed branches were visible at decision time.
|
|
60
|
+
|
|
61
|
+
This is the MCP shape of Aionis Plan as Memory Asset: the MCP client can use a
|
|
62
|
+
strong planner once, then let later workers continue from adjudicated execution
|
|
63
|
+
memory instead of raw chat history.
|
|
64
|
+
|
|
49
65
|
The tool returns these structured fields in `structuredContent`:
|
|
50
66
|
|
|
51
67
|
| Field | Meaning |
|
|
@@ -122,3 +138,9 @@ npm run -s lite:start
|
|
|
122
138
|
|
|
123
139
|
For deeper host integration, use `@aionis/sdk`. The MCP bridge is the
|
|
124
140
|
drop-in path; the SDK is the full application integration path.
|
|
141
|
+
|
|
142
|
+
Claude Code / Cursor walkthrough:
|
|
143
|
+
[https://docs.aionis.work/integrations/mcp](https://docs.aionis.work/integrations/mcp)
|
|
144
|
+
|
|
145
|
+
Runnable proof artifacts:
|
|
146
|
+
[https://docs.aionis.work/examples](https://docs.aionis.work/examples)
|
package/dist/server.js
CHANGED
|
@@ -55,7 +55,7 @@ function register(server, client, name, config) {
|
|
|
55
55
|
export function createAionisMcpServer(client) {
|
|
56
56
|
const server = new McpServer({
|
|
57
57
|
name: "aionis-mcp",
|
|
58
|
-
version: "0.1.
|
|
58
|
+
version: "0.1.7",
|
|
59
59
|
});
|
|
60
60
|
register(server, client, "aionis_context", {
|
|
61
61
|
title: "Get Aionis Agent Context",
|
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aionis/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "MCP stdio bridge for Aionis execution memory.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
+
"homepage": "https://docs.aionis.work/integrations/mcp",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/ostinatocc/Aionis.git",
|
|
10
|
+
"directory": "packages/aionis-mcp"
|
|
11
|
+
},
|
|
6
12
|
"type": "module",
|
|
7
13
|
"bin": {
|
|
8
14
|
"aionis-mcp": "dist/index.js"
|
|
@@ -12,7 +18,7 @@
|
|
|
12
18
|
"README.md"
|
|
13
19
|
],
|
|
14
20
|
"engines": {
|
|
15
|
-
"node": ">=22.
|
|
21
|
+
"node": ">=22.5.0"
|
|
16
22
|
},
|
|
17
23
|
"scripts": {
|
|
18
24
|
"build": "tsc -p tsconfig.json",
|
|
@@ -20,7 +26,7 @@
|
|
|
20
26
|
"prepack": "npm run build"
|
|
21
27
|
},
|
|
22
28
|
"dependencies": {
|
|
23
|
-
"@aionis/sdk": "^0.1.
|
|
29
|
+
"@aionis/sdk": "^0.1.10",
|
|
24
30
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
25
31
|
"zod": "^3.25.76"
|
|
26
32
|
},
|