Skip to main content
Glama

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(已验证)

工具

工具

描述

get_trust_score

Solana 钱包地址的信任评分及信号

list_recent_queries

最近评分钱包的匿名列表

使用方法

在 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 研究:代理信任与验证实验

-
security - not tested
F
license - not found
-
quality - not tested

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