openclaw-trust-scorer
OpenClaw 信任评分器 — MCP 服务器
用于 Solana 代理信任评分的 MCP 服务器。
查询任何 Solana 钱包地址,即可根据真实的链上数据(交易次数、最后活跃时间和 SOL 余额)获取信任档案。
功能
get_trust_score 工具会查询 Solana 主网 beta 版 RPC 并返回:
{
"wallet_address": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"trust_score": 0.784,
"tier": "verified",
"signals": {
"transaction_count": 847,
"last_activity": "2026-04-11T14:22:31Z",
"balance_sol": 6.19,
"account_exists": true
},
"related_agents": [...]
}等级: unknown(未知)→ emerging(新兴)→ established(成熟)→ verified(已验证)
Related MCP server: AgentScore
工具
工具 | 描述 |
| Solana 钱包地址的信任评分及信号 |
| 最近评分钱包的匿名列表 |
使用方法
在 Claude Desktop 中使用(远程端点)
添加到 claude_desktop_config.json:
{
"mcpServers": {
"openclaw-trust-scorer": {
"command": "npx",
"args": ["-y", "openclaw-trust-scorer"]
}
}
}在 Cursor / Zed / Continue 中使用
添加远程 MCP 端点:http://178.104.131.84:8082/mcp
直接 HTTP(兼容 REST)
# Health check
curl http://178.104.131.84:8082/health
# MCP protocol (initialize)
curl -X POST http://178.104.131.84:8082/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
# A2A agent card
curl http://178.104.131.84:8082/.well-known/agent.json本地开发
npm install
node server.js --stdio # stdio mode (for Claude Desktop local)
node server.js --http # HTTP mode (default, port 3000)为什么需要信任评分?
在新兴的代理经济中,基于大语言模型(LLM)的买家在委派任务或进行支付前,需要评估服务提供商。链上活动是代理过往记录中可验证且防篡改的信号。本服务通过标准的 MCP 协议使该信号变得可访问。
数据来源
Solana 主网 beta 版 RPC:交易历史、账户余额
评分公式:
trust_score = 0.5 × 活跃度 + 0.35 × 近期活跃度 + 0.15 × 余额隐私:无个人数据,仅限公开的链上记录
相关内容
A2A 端点:
http://178.104.131.84:8082/.well-known/agent.json(A2A 协议)OpenClaw 研究:代理信任与验证实验
This server cannot be deployed
Maintenance
Related MCP Connectors
Trust stack for AI agents: identity, attest, verify, rate, recommend, discover — on Solana.
Trust infrastructure for AI agents. Portable reputation (JTS 0-5), agent discovery, vouching.
Trust infrastructure for AI agents: read a verifiable Trust Rating, claim an identity, earn a badge.
Solana address risk grades and token scans for AI agents. Pay-per-call via x402 (USDC on Base).
Related MCP Servers
- MIT
- AlicenseAqualityCmaintenanceProvides trust and reputation tools for AI agent wallets within the x402 payment ecosystem and ERC-8004 agent registry. It enables users to perform wallet reputation lookups, real-time risk assessments, and browse registered agents.4342 npm-
- AlicenseAqualityAmaintenanceTrust, identity, and reputation infrastructure for AI agents. Register agents with W3C DID (Ed25519), check EigenTrust reputation scores, submit peer attestations, search agents by capability, and verify IPFS-anchored audit trails. 11 tools.20162 PyPI15MIT
- AlicenseNot gradedqualityNot gradedmaintenanceProvides AI agents with trust scoring and reputation management capabilities for secure interactions. Enables agents to check trust scores, rate interactions, and manage disputes before transacting with other agents.-