a2ald 0.2.6 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +23 -0
  2. package/package.json +7 -6
package/README.md CHANGED
@@ -4,6 +4,29 @@ npm distribution of the **A2AL daemon** (`a2ald`): decentralized agent networkin
4
4
 
5
5
  The main package pulls in the correct **platform binary** via optional dependencies (`@a2al/a2ald-*`). Install once; the right binary is selected for Linux, macOS, or Windows (x64/arm64 where applicable).
6
6
 
7
+ ## MCP integration
8
+
9
+ Lets AI agents find and connect to other agents directly—no central server, registry, or pre-configured endpoint required.
10
+
11
+ Add to your MCP client config (Cursor, Claude Desktop, Windsurf, Cline, etc.):
12
+
13
+ ```json
14
+ {
15
+ "mcpServers": {
16
+ "a2al": {
17
+ "command": "a2ald",
18
+ "args": ["--mcp-stdio"]
19
+ }
20
+ }
21
+ }
22
+ ```
23
+
24
+ If `a2ald` is not on PATH, use `npx -y a2ald --mcp-stdio` or an absolute path to the binary. For daily use, install as a service and connect via `"url": "http://127.0.0.1:2121/mcp/"`.
25
+
26
+ Always call `a2al_status` first and wait for `network_ready: true` before network operations.
27
+
28
+ Install guide: [doc/llms-install.md](https://github.com/a2al/a2al/blob/main/doc/llms-install.md) · Full setup: [doc/mcp-setup.md](https://github.com/a2al/a2al/blob/main/doc/mcp-setup.md)
29
+
7
30
  ## Install
8
31
 
9
32
  ```bash
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "a2ald",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
+ "mcpName": "io.github.a2al/a2ald",
4
5
  "description": "A2AL daemon — decentralized agent networking (local REST+MCP including fetch/tunnel endpoints)",
5
6
  "license": "MPL-2.0",
6
7
  "homepage": "https://a2al.org",
@@ -35,10 +36,10 @@
35
36
  "README.md"
36
37
  ],
37
38
  "optionalDependencies": {
38
- "@a2al/a2ald-linux-x64": "0.2.6",
39
- "@a2al/a2ald-linux-arm64": "0.2.6",
40
- "@a2al/a2ald-darwin-x64": "0.2.6",
41
- "@a2al/a2ald-darwin-arm64": "0.2.6",
42
- "@a2al/a2ald-win32-x64": "0.2.6"
39
+ "@a2al/a2ald-linux-x64": "0.2.8",
40
+ "@a2al/a2ald-linux-arm64": "0.2.8",
41
+ "@a2al/a2ald-darwin-x64": "0.2.8",
42
+ "@a2al/a2ald-darwin-arm64": "0.2.8",
43
+ "@a2al/a2ald-win32-x64": "0.2.8"
43
44
  }
44
45
  }