@ken-jo/agent-connector 0.6.3 → 0.6.4
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 +10 -3
- package/package.json +20 -7
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Cursor, Copilot, Gemini, OpenCode, Warp, Zed…).
|
|
|
22
22
|
[](https://agent-connector.ai/coverage)
|
|
23
23
|

|
|
24
24
|
[](https://agent-plugins.org)
|
|
25
|
-

|
|
26
26
|
|
|
27
27
|
**By the numbers.** Every figure is derived from the adapter registry or measured
|
|
28
28
|
by a test on each run, and a drift test fails if the README and the source disagree.
|
|
@@ -35,7 +35,14 @@ by a test on each run, and a drift test fails if the README and the source disag
|
|
|
35
35
|
| Package formats emitted | **9** host plugin formats + **2** MCP standard artifacts (`mcp-server-json`, `mcpb`) |
|
|
36
36
|
| Hosts verified against the real host binary | **25 of 42** (5 of them end-to-end through a model tool call); the other **17** by the registry install harness in an isolated HOME |
|
|
37
37
|
| Measured footprint | one 135-line `defineConnector()` → **64 host-native files** in 6 file extensions across 41 of 42 hosts at user scope (61 at project scope) — `npm run measure:footprint` |
|
|
38
|
-
| Test suite | **
|
|
38
|
+
| Test suite | **150** test files |
|
|
39
|
+
|
|
40
|
+
**Who it is for.** agent-connector is the **publisher** side of MCP distribution:
|
|
41
|
+
you wrote (or are writing) an MCP server and want it to install itself into your
|
|
42
|
+
users' agent hosts — with hooks, skills and a plugin bundle — from your own package,
|
|
43
|
+
`npx <your-package> install`. Tools such as `add-mcp` and `agent-install` are the
|
|
44
|
+
**end-user** side: they add an existing server to the agents on one machine. The two
|
|
45
|
+
compose; agent-connector is what the server's author ships.
|
|
39
46
|
|
|
40
47
|
**Two audiences:** connector developers start at [Quick start](#quick-start);
|
|
41
48
|
if you already run an agent host and just want token totals, jump straight to
|
|
@@ -92,7 +99,7 @@ npm install @ken-jo/agent-connector
|
|
|
92
99
|
"name": "@acme/acme-db-mcp",
|
|
93
100
|
"mcpName": "io.github.acme/acme-db",
|
|
94
101
|
"bin": { "acme-db": "./bin.mjs" },
|
|
95
|
-
"dependencies": { "@ken-jo/agent-connector": "^0.6.
|
|
102
|
+
"dependencies": { "@ken-jo/agent-connector": "^0.6.4" }
|
|
96
103
|
}
|
|
97
104
|
```
|
|
98
105
|
|
package/package.json
CHANGED
|
@@ -1,21 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ken-jo/agent-connector",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Deploy one MCP server to every agent host. Declare it once with defineConnector() and ship a branded package that installs itself into Claude Code, Codex, Cursor, Copilot, Gemini CLI, Windsurf, Zed, Kiro, Warp, OpenCode and 42 agent hosts in all — native config, hooks, skills, Agent Plugins bundle, per-tool token telemetry.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"mcp",
|
|
8
8
|
"model-context-protocol",
|
|
9
|
+
"mcp-server",
|
|
10
|
+
"mcp-sdk",
|
|
11
|
+
"publish-mcp-server",
|
|
12
|
+
"deploy-mcp-server",
|
|
13
|
+
"mcp-distribution",
|
|
14
|
+
"agent-hosts",
|
|
15
|
+
"agent-plugins",
|
|
16
|
+
"agent-skills",
|
|
17
|
+
"agents-md",
|
|
9
18
|
"hooks",
|
|
10
19
|
"claude-code",
|
|
11
20
|
"codex",
|
|
12
21
|
"cursor",
|
|
13
|
-
"
|
|
14
|
-
"copilot",
|
|
22
|
+
"github-copilot",
|
|
15
23
|
"gemini-cli",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
24
|
+
"windsurf",
|
|
25
|
+
"zed",
|
|
26
|
+
"kiro",
|
|
27
|
+
"warp",
|
|
28
|
+
"opencode",
|
|
29
|
+
"cline",
|
|
30
|
+
"openclaw",
|
|
31
|
+
"token-telemetry"
|
|
19
32
|
],
|
|
20
33
|
"license": "Apache-2.0",
|
|
21
34
|
"author": "KenJo",
|