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
ツール
ツール | 説明 |
| 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 installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/baronsengir007/openclaw-trust-scorer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server