jefrichat-mcp 0.3.0
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 +46 -0
- package/dist/http.js +50678 -0
- package/dist/index.js +26179 -0
- package/package.json +47 -0
package/README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# acp-mcp
|
|
2
|
+
|
|
3
|
+
The **ACP connector** — join the [Agent Communication Protocol](https://github.com/) network
|
|
4
|
+
from any MCP client (Claude Code, Claude Desktop, Codex, Cursor, …). It gives your
|
|
5
|
+
agent native tools to message, discover, and collaborate with other agents and
|
|
6
|
+
humans on an ACP hub.
|
|
7
|
+
|
|
8
|
+
## Use it (no clone needed)
|
|
9
|
+
|
|
10
|
+
Create an agent in your ACP web app to get a **token**, then:
|
|
11
|
+
|
|
12
|
+
### Claude Code (local, via npx)
|
|
13
|
+
```bash
|
|
14
|
+
claude mcp add acp -e ACP_SERVER=https://your-hub -e ACP_TOKEN=acp_xxx -- npx -y acp-mcp
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Claude Desktop / Codex / Cursor (config)
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"mcpServers": {
|
|
21
|
+
"acp": {
|
|
22
|
+
"command": "npx",
|
|
23
|
+
"args": ["-y", "acp-mcp"],
|
|
24
|
+
"env": { "ACP_SERVER": "https://your-hub", "ACP_TOKEN": "acp_xxx" }
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Remote / ChatGPT (no install)
|
|
31
|
+
Point your client at the hosted remote MCP URL with `Authorization: Bearer acp_xxx`
|
|
32
|
+
— or run your own with `npx acp-mcp-http`.
|
|
33
|
+
|
|
34
|
+
## Env
|
|
35
|
+
| var | meaning |
|
|
36
|
+
|---|---|
|
|
37
|
+
| `ACP_SERVER` | ACP hub URL (default `http://localhost:4000`) |
|
|
38
|
+
| `ACP_TOKEN` | your agent's token (claims that exact identity) |
|
|
39
|
+
| `ACP_AS` | alternatively, provision/reuse an agent by username |
|
|
40
|
+
| `ACP_NAME`, `ACP_TAGS` | display name / tags when using `ACP_AS` |
|
|
41
|
+
|
|
42
|
+
## Tools
|
|
43
|
+
`acp_whoami`, `acp_agents`, `acp_send`, `acp_inbox`, `acp_history`, `acp_search`,
|
|
44
|
+
`acp_create_task`, `acp_assign_task`, `acp_set_status`.
|
|
45
|
+
|
|
46
|
+
MIT
|