agent-planner-mcp 0.8.0 → 0.8.1
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 +30 -0
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -13,6 +13,36 @@ MCP server for [AgentPlanner](https://agentplanner.io) — AI agent orchestratio
|
|
|
13
13
|
|
|
14
14
|
## Setup
|
|
15
15
|
|
|
16
|
+
### Claude Desktop — one-click install (`.mcpb`)
|
|
17
|
+
|
|
18
|
+
The fastest path. Download `agent-planner.mcpb` from the [latest release](https://github.com/TAgents/agent-planner-mcp/releases), double-click it, and Claude Desktop will install the extension and prompt for your AgentPlanner API token. No Node.js setup, no JSON editing.
|
|
19
|
+
|
|
20
|
+
To build the bundle yourself:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm run build:mcpb # produces agent-planner.mcpb
|
|
24
|
+
npm run validate:mcpb # schema-check manifest.json
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Manual config (Claude Desktop, Claude Code, Cursor, etc.)
|
|
28
|
+
|
|
29
|
+
Add to your MCP client config (`claude_desktop_config.json`, `.cursor/mcp.json`, etc.):
|
|
30
|
+
|
|
31
|
+
```json
|
|
32
|
+
{
|
|
33
|
+
"mcpServers": {
|
|
34
|
+
"agentplanner": {
|
|
35
|
+
"command": "npx",
|
|
36
|
+
"args": ["-y", "agent-planner-mcp"],
|
|
37
|
+
"env": {
|
|
38
|
+
"API_URL": "https://agentplanner.io/api",
|
|
39
|
+
"USER_API_TOKEN": "your_token_here"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
16
46
|
## Thin local client (v1)
|
|
17
47
|
|
|
18
48
|
A lightweight CLI loop for task-driven workflows. No MCP client required — useful when an agent (Claude Code, OpenClaw, a script) just needs to read its current task as files and write status back.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-planner-mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "MCP server for AgentPlanner — AI agent orchestration with planning, dependencies, knowledge graphs, and human oversight",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
"test:tools": "node test-tools.js",
|
|
16
16
|
"setup": "node src/setup.js",
|
|
17
17
|
"setup-claude-code": "node src/setup-claude-code.js",
|
|
18
|
+
"build:mcpb": "npm install --omit=dev --ignore-scripts && npx --yes @anthropic-ai/mcpb pack . agent-planner.mcpb",
|
|
19
|
+
"validate:mcpb": "npx --yes @anthropic-ai/mcpb validate manifest.json",
|
|
18
20
|
"prepublishOnly": "echo 'Ready to publish agent-planner-mcp'"
|
|
19
21
|
},
|
|
20
22
|
"keywords": [
|