@aionis/mcp 0.1.5 → 0.1.6
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 +8 -0
- 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
|
|
|
@@ -122,3 +124,9 @@ npm run -s lite:start
|
|
|
122
124
|
|
|
123
125
|
For deeper host integration, use `@aionis/sdk`. The MCP bridge is the
|
|
124
126
|
drop-in path; the SDK is the full application integration path.
|
|
127
|
+
|
|
128
|
+
Claude Code / Cursor walkthrough:
|
|
129
|
+
[https://docs.aionis.work/integrations/mcp](https://docs.aionis.work/integrations/mcp)
|
|
130
|
+
|
|
131
|
+
Runnable proof artifacts:
|
|
132
|
+
[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.6",
|
|
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.6",
|
|
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.9",
|
|
24
30
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
25
31
|
"zod": "^3.25.76"
|
|
26
32
|
},
|