@priors/mcp 0.1.0 → 0.1.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 +6 -2
- package/package.json +20 -3
package/README.md
CHANGED
|
@@ -68,8 +68,8 @@ Settings → Developer → Edit Config (`claude_desktop_config.json`), then rest
|
|
|
68
68
|
}
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
Read-only (no wallet): leave out `env`.
|
|
72
|
-
`"command": "node", "args": ["/path/to/priors/packages/mcp/bin/priors-mcp.mjs"]`.
|
|
71
|
+
Read-only (no wallet): leave out `env`. From a checkout of the Priors repository instead of npm (run `npm install` at
|
|
72
|
+
its root first): `"command": "node", "args": ["/path/to/priors/packages/mcp/bin/priors-mcp.mjs"]`.
|
|
73
73
|
|
|
74
74
|
### Claude Code
|
|
75
75
|
|
|
@@ -97,3 +97,7 @@ or, for your user only: `claude mcp add priors --scope user -e PRIORS_KEY="$PRIO
|
|
|
97
97
|
|
|
98
98
|
"What's the Priors score of agent 6228?" · "How much USDG does my wallet hold?" · "Find services that sell token
|
|
99
99
|
prices" · "Pay https://api.example.com/report, up to 5 cents" · "Borrow $5 for 7 days, show me the fee first".
|
|
100
|
+
|
|
101
|
+
## Source
|
|
102
|
+
|
|
103
|
+
[github.com/priors-agents/priors](https://github.com/priors-agents/priors/tree/main/packages/mcp), MIT.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@priors/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "MCP server for Priors on Robinhood Chain: pay x402 URLs in USDG, read balances, credit lines and scores, borrow and repay. Key from PRIORS_KEY only.",
|
|
6
6
|
"type": "module",
|
|
@@ -18,14 +18,31 @@
|
|
|
18
18
|
"deployments",
|
|
19
19
|
"README.md"
|
|
20
20
|
],
|
|
21
|
-
"keywords": [
|
|
21
|
+
"keywords": [
|
|
22
|
+
"mcp",
|
|
23
|
+
"x402",
|
|
24
|
+
"robinhood-chain",
|
|
25
|
+
"usdg",
|
|
26
|
+
"agents",
|
|
27
|
+
"credit",
|
|
28
|
+
"priors"
|
|
29
|
+
],
|
|
22
30
|
"license": "MIT",
|
|
31
|
+
"homepage": "https://mcp.priors.trade",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/priors-agents/priors.git",
|
|
35
|
+
"directory": "packages/mcp"
|
|
36
|
+
},
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/priors-agents/priors/issues"
|
|
39
|
+
},
|
|
23
40
|
"engines": {
|
|
24
41
|
"node": ">=20"
|
|
25
42
|
},
|
|
26
43
|
"dependencies": {
|
|
27
44
|
"@modelcontextprotocol/sdk": "^1.30.1",
|
|
28
|
-
"@priors/x402": "0.1.
|
|
45
|
+
"@priors/x402": "0.1.1",
|
|
29
46
|
"ethers": "^6.13.4",
|
|
30
47
|
"zod": "^4.6.5"
|
|
31
48
|
}
|