@aionis/mcp 0.1.7 → 0.1.8

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 CHANGED
@@ -5,12 +5,23 @@ MCP stdio bridge for Aionis execution memory.
5
5
  Docs: [https://docs.aionis.work/integrations/mcp](https://docs.aionis.work/integrations/mcp)
6
6
 
7
7
  Use this package when you want Claude Code, Cursor, or another MCP client to
8
- try Aionis without rewriting the host Agent loop first.
8
+ try Aionis without rewriting the host Agent loop first. MCP is the fastest
9
+ public trial path for Aionis Execution Memory: connect the bridge, call
10
+ `aionis_context`, and let the Agent continue from governed state instead of raw
11
+ chat history.
9
12
 
10
13
  ```bash
11
14
  npx @aionis/mcp@latest --base-url http://127.0.0.1:3001 --scope my-project
12
15
  ```
13
16
 
17
+ Start a local Runtime first:
18
+
19
+ ```bash
20
+ npx @aionis/create@latest
21
+ cd Aionis
22
+ npm run -s lite:start
23
+ ```
24
+
14
25
  Environment form:
15
26
 
16
27
  ```bash
@@ -48,7 +59,13 @@ Runtime guide, and `budget_profile`, `max_prompt_chars`, `repo_state`, and
48
59
  For example, pass `repo_state.missing_files` so Aionis can tell the Agent that a
49
60
  missing active target is pending work rather than stale memory.
50
61
 
51
- For Claude Code or Cursor demos, the recommended flow is:
62
+ For Claude Code or Cursor demos, the recommended first loop is:
63
+
64
+ ```text
65
+ aionis_context -> Agent action -> aionis_record_step -> aionis_flight_recorder
66
+ ```
67
+
68
+ Use this flow:
52
69
 
53
70
  1. Use `aionis_record_step` as a planner to record the accepted plan,
54
71
  active targets, acceptance checks, and execution boundary.
@@ -77,8 +94,10 @@ The tool returns these structured fields in `structuredContent`:
77
94
  | `inspect_first_memory_ids` | Candidate or contested memories that require inspection before action. |
78
95
  | `rehydrate_first_memory_ids` | Compact pointers that need raw payload recovery before exact use. |
79
96
 
80
- Use `aionis_govern_memory` when an MCP client already has memories from another
81
- backend and needs Aionis to decide which ones may direct the Agent:
97
+ Use `aionis_govern_memory` when an MCP client already has memories from Mem0,
98
+ Zep, Supermemory, Pinecone, pgvector, Chroma, Weaviate, LangGraph Store,
99
+ markdown, logs, or another backend and needs Aionis to decide which ones may
100
+ direct the Agent:
82
101
 
83
102
  ```json
84
103
  {
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.7",
58
+ version: "0.1.8",
59
59
  });
60
60
  register(server, client, "aionis_context", {
61
61
  title: "Get Aionis Agent Context",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aionis/mcp",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "MCP stdio bridge for Aionis execution memory.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://docs.aionis.work/integrations/mcp",