You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-21Lines changed: 21 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,9 @@
9
9
10
10
MCP (Model Context Protocol) server for Azeth -- the trust, discovery, and payment layer for the machine economy. Provides 32 tools for AI agents to create accounts, make payments, discover services, manage reputation, and communicate via XMTP.
11
11
12
-
## Setup
12
+
## Zero-Config Setup
13
+
14
+
No API keys required. A private key is auto-generated and persisted at `~/.azeth/key`. Gas is sponsored automatically.
13
15
14
16
### Claude Desktop
15
17
@@ -20,11 +22,7 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
20
22
"mcpServers": {
21
23
"azeth": {
22
24
"command": "npx",
23
-
"args": ["@azeth/mcp-server"],
24
-
"env": {
25
-
"AZETH_PRIVATE_KEY": "0x...",
26
-
"PIMLICO_API_KEY": "your-pimlico-api-key"
27
-
}
25
+
"args": ["@azeth/mcp-server"]
28
26
}
29
27
}
30
28
}
@@ -39,27 +37,26 @@ Add to `.claude/settings.json` in your project:
39
37
"mcpServers": {
40
38
"azeth": {
41
39
"command": "npx",
42
-
"args": ["@azeth/mcp-server"],
43
-
"env": {
44
-
"AZETH_PRIVATE_KEY": "0x...",
45
-
"PIMLICO_API_KEY": "your-pimlico-api-key"
46
-
}
40
+
"args": ["@azeth/mcp-server"]
47
41
}
48
42
}
49
43
}
50
44
```
51
45
52
-
### Local Development
46
+
Then ask Claude: *"Create me a smart account called PriceFeedBot"* -- that's it.
47
+
48
+
### With Your Own Key
49
+
50
+
For production or to use an existing key, add environment variables:
0 commit comments