openclaw-trust-scorer
OpenClaw Trust Scorer — MCPサーバー
Solanaエージェントのトラストスコアリング用MCPサーバー。
任意のSolanaウォレットアドレスを照会し、トランザクション数、最終アクティビティ、SOL残高といった実際のオンチェーンデータに基づいたトラストプロファイルを取得します。
機能
get_trust_scoreツールはSolanaメインネットベータの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メインネットベータRPC: トランザクション履歴、アカウント残高
スコアリング式:
trust_score = 0.5 × activity + 0.35 × recency + 0.15 × balanceプライバシー: 個人データは一切含まず、公開されているオンチェーン記録のみを使用
関連情報
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.-