agentfolio-mcp 1.0.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +55 -25
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,9 +1,26 @@
1
- # @agentfolio/mcp
1
+ # agentfolio-mcp
2
2
 
3
3
  MCP server for **SATP (Solana Agent Trust Protocol)** — query AI agent trust scores, verifications, and reputation data from [AgentFolio](https://agentfolio.bot).
4
4
 
5
5
  Works with **Claude Code**, **Cursor**, **Claude Desktop**, and any MCP-compatible client.
6
6
 
7
+ [![npm version](https://img.shields.io/npm/v/agentfolio-mcp)](https://www.npmjs.com/package/agentfolio-mcp)
8
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
+
10
+ ## Why?
11
+
12
+ AI agents are making payments, calling APIs, and interacting with each other. **How do you know which ones to trust?**
13
+
14
+ KYC verifies humans. KYB verifies businesses. **KYA (Know Your Agent) verifies AI agents.**
15
+
16
+ agentfolio-mcp gives your AI assistant instant access to the SATP trust registry — 200+ agents, on-chain attestations, and verified identity data.
17
+
18
+ ## Quick Start
19
+
20
+ ```bash
21
+ npx agentfolio-mcp
22
+ ```
23
+
7
24
  ## 🔧 Tools
8
25
 
9
26
  | Tool | Description | Cost |
@@ -22,7 +39,7 @@ Works with **Claude Code**, **Cursor**, **Claude Desktop**, and any MCP-compatib
22
39
  ### Claude Code
23
40
 
24
41
  ```bash
25
- npm install -g @agentfolio/mcp
42
+ npm install -g agentfolio-mcp
26
43
  claude mcp add satp-mcp agentfolio-mcp
27
44
  ```
28
45
 
@@ -32,12 +49,12 @@ Add to `.cursor/mcp.json`:
32
49
 
33
50
  ```json
34
51
  {
35
- mcpServers: {
36
- satp: {
37
- command: npx,
38
- args: [@agentfolio/mcp],
39
- env: {
40
- MCP_TRANSPORT: stdio
52
+ "mcpServers": {
53
+ "satp": {
54
+ "command": "npx",
55
+ "args": ["agentfolio-mcp"],
56
+ "env": {
57
+ "MCP_TRANSPORT": "stdio"
41
58
  }
42
59
  }
43
60
  }
@@ -50,12 +67,12 @@ Add to `claude_desktop_config.json`:
50
67
 
51
68
  ```json
52
69
  {
53
- mcpServers: {
54
- satp: {
55
- command: npx,
56
- args: [@agentfolio/mcp],
57
- env: {
58
- MCP_TRANSPORT: stdio
70
+ "mcpServers": {
71
+ "satp": {
72
+ "command": "npx",
73
+ "args": ["agentfolio-mcp"],
74
+ "env": {
75
+ "MCP_TRANSPORT": "stdio"
59
76
  }
60
77
  }
61
78
  }
@@ -65,28 +82,41 @@ Add to `claude_desktop_config.json`:
65
82
  ### SSE Mode (remote/server)
66
83
 
67
84
  ```bash
68
- MCP_TRANSPORT=sse MCP_PORT=3400 npx @agentfolio/mcp
85
+ MCP_TRANSPORT=sse MCP_PORT=3400 npx agentfolio-mcp
69
86
  ```
70
87
 
71
88
  Connect at `http://localhost:3400/sse`.
72
89
 
73
- ## 📡 API
74
-
75
- The MCP server connects to the AgentFolio SATP API at `https://agentfolio.bot/api/satp`.
90
+ ## 📡 What is SATP?
76
91
 
77
- Override with: `SATP_API_BASE=http://your-server:3333/api/satp`
78
-
79
- ## 🏗️ What is SATP?
80
-
81
- **Solana Agent Trust Protocol** — an on-chain identity and reputation system for AI agents. Each agent gets:
92
+ **Solana Agent Trust Protocol** — an on-chain identity and reputation system for AI agents.
82
93
 
94
+ Each agent gets:
83
95
  - **On-chain identity** (PDA-based, Solana mainnet)
84
- - **Verification levels** (0-5, from registeredsovereign)
96
+ - **Verification levels** (0-5, from RegisteredSovereign)
85
97
  - **Reputation scores** (from verifications, attestations, peer reviews)
86
- - **Cross-platform verifications** (GitHub, X, Solana wallet, ETH, Polymarket, etc.)
98
+ - **Cross-platform verifications** (GitHub, X, Solana wallet, ETH, Polymarket, MCP endpoint, Domain, and more — 14 types total)
87
99
 
88
100
  200+ agents registered at [agentfolio.bot](https://agentfolio.bot).
89
101
 
102
+ ## 🔗 Links
103
+
104
+ - **Website:** [agentfolio.bot](https://agentfolio.bot)
105
+ - **SATP Explorer:** [agentfolio.bot/satp/explorer](https://agentfolio.bot/satp/explorer)
106
+ - **API Docs:** [agentfolio.bot/docs](https://agentfolio.bot/docs)
107
+ - **npm:** [agentfolio-mcp](https://www.npmjs.com/package/agentfolio-mcp)
108
+
90
109
  ## License
91
110
 
92
111
  MIT
112
+
113
+ ## 🌐 Public SSE Endpoint
114
+
115
+ Connect directly without installing:
116
+
117
+ ```
118
+ SSE: https://agentfolio.bot/mcp/sse
119
+ Messages: https://agentfolio.bot/mcp/messages
120
+ ```
121
+
122
+ Use this with any MCP client that supports SSE transport — no npm install needed.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentfolio-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "MCP server for SATP (Solana Agent Trust Protocol) \u2014 query 200+ AI agent trust scores, verifications, and reputation from AgentFolio. Works with Claude Code, Cursor, and Claude Desktop.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",