@ardensh/mcp 0.1.1 → 0.1.2
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 +20 -28
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,33 +1,26 @@
|
|
|
1
1
|
# @ardensh/mcp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Your AI agents can now pay for things — provision and manage them without leaving your AI assistant.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Arden gives each agent its own wallet and a budget. This MCP server lets you set that up via natural language in Claude Desktop, Cursor, Claude Code, or any MCP-compatible client. No CLI needed.
|
|
6
|
+
|
|
7
|
+
> "Provision a new agent called researcher with a $200 monthly budget, only allowed to call exa.ai and browserbase.io"
|
|
6
8
|
|
|
7
9
|
## Tools
|
|
8
10
|
|
|
9
11
|
| Tool | Description |
|
|
10
12
|
|---|---|
|
|
11
|
-
| `arden_provision_agent` | Create a new agent with budget limits and vendor restrictions |
|
|
12
|
-
| `arden_list_agents` | List all agents with budget usage |
|
|
13
|
+
| `arden_provision_agent` | Create a new agent with a wallet, budget limits, and vendor restrictions |
|
|
14
|
+
| `arden_list_agents` | List all agents with spend and budget usage |
|
|
13
15
|
| `arden_agent_status` | Detailed status and budget breakdown for a specific agent |
|
|
14
|
-
| `arden_update_agent` |
|
|
16
|
+
| `arden_update_agent` | Adjust an agent's budgets, allowed vendors, or pause it |
|
|
15
17
|
| `arden_fund_agent` | Get wallet address and USDC funding instructions |
|
|
16
18
|
|
|
17
|
-
##
|
|
18
|
-
|
|
19
|
-
Install the Arden CLI and log in to generate your API key:
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
npm install -g @arden/cli
|
|
23
|
-
arden login
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
This writes your API key to `~/.arden/config.json`, which the MCP server reads automatically. You can skip the `ARDEN_API_KEY` env var if you've already done this.
|
|
19
|
+
## Setup
|
|
27
20
|
|
|
28
|
-
|
|
21
|
+
### 1. Add to Claude Desktop
|
|
29
22
|
|
|
30
|
-
Add this to
|
|
23
|
+
Add this to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
31
24
|
|
|
32
25
|
```json
|
|
33
26
|
{
|
|
@@ -43,23 +36,17 @@ Add this to your Claude Desktop config (`~/Library/Application Support/Claude/cl
|
|
|
43
36
|
}
|
|
44
37
|
```
|
|
45
38
|
|
|
46
|
-
`ARDEN_API_KEY`
|
|
39
|
+
Get your `ARDEN_API_KEY` by running `arden login` (see below), or find it at [arden.sh](https://arden.sh).
|
|
47
40
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
```bash
|
|
51
|
-
claude mcp add arden npx -y @ardensh/mcp
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
If you haven't run `arden login`, pass your key via env:
|
|
41
|
+
### 2. Add to Claude Code
|
|
55
42
|
|
|
56
43
|
```bash
|
|
57
44
|
claude mcp add arden -e ARDEN_API_KEY=arden_live_... npx -y @ardensh/mcp
|
|
58
45
|
```
|
|
59
46
|
|
|
60
|
-
|
|
47
|
+
### 3. Add to Cursor
|
|
61
48
|
|
|
62
|
-
Add the same block as the Claude Desktop config above to
|
|
49
|
+
Add the same block as the Claude Desktop config above to **Settings → MCP**.
|
|
63
50
|
|
|
64
51
|
## Authentication
|
|
65
52
|
|
|
@@ -68,7 +55,12 @@ The server looks for credentials in this order:
|
|
|
68
55
|
1. `ARDEN_API_KEY` environment variable
|
|
69
56
|
2. `~/.arden/config.json` (written by `arden login`)
|
|
70
57
|
|
|
71
|
-
If
|
|
58
|
+
If you've already installed the Arden CLI and run `arden login`, no env var is needed.
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
npm install -g @ardensh/cli
|
|
62
|
+
arden login
|
|
63
|
+
```
|
|
72
64
|
|
|
73
65
|
## Development
|
|
74
66
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ardensh/mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Give your AI agents a wallet and a budget from Claude, Cursor, or any MCP client. Provision agents, set spend limits, and manage vendor allowlists via natural language.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": ["dist"],
|
|
7
7
|
"bin": {
|