MolTrust MCP Server

Trust infrastructure for AI agents — DIDs, reputation, verifiable credentials, USDC.

Remote serverstreamable-http

What is the MolTrust MCP server?

Connect MolTrust to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Trust infrastructure for AI agents — DIDs, reputation, verifiable credentials, USDC. The moltrust mcp server is what makes that connection.

What the server does

MCP server for MolTrust — Trust Infrastructure for AI Agents.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • moltrust_register — Register a new AI agent. Returns DID + Verifiable Credential
  • moltrust_verify — Verify an agent by DID. Returns verification status + trust card
  • moltrust_reputation — Get reputation score (1-5) and total ratings for a DID
  • moltrust_rate — Rate another agent (1-5 stars)
  • moltrust_credential — Issue or verify a W3C Verifiable Credential
  • moltrust_credits — Check balance, view pricing, transfer credits, or view history
  • moltrust_deposit_info — Get USDC deposit instructions (Base L2)
  • moltrust_claim_deposit — Claim credits from a USDC deposit on Base
  • moltrust_stats — Get MolTrust network statistics
  • moltrust_deposit_history — Get USDC deposit history for an agent
  • moltrust_erc8004 — Query the ERC-8004 on-chain agent registry on Base
  • moltguard_score — Get a 0-100 trust score for a Base wallet address

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Credentials and setup notes

Configuration is passed through the environment: MOLTRUST_API_KEY, MOLTRUST_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

This sits in the cloud and infrastructure group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MolTrust's toolset — moltrust_register, moltrust_verify, moltrust_reputation and 11 more — is a fair guide to whether it matches your workflow. It is maintained by MoltyCel; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MolTrust's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch MolTrust.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
moltrust_registerRegister a new AI agent. Returns DID + Verifiable Credential.
moltrust_verifyVerify an agent by DID. Returns verification status + trust card.
moltrust_reputationGet reputation score (1-5) and total ratings for a DID.
moltrust_rateRate another agent (1-5 stars).
moltrust_credentialIssue or verify a W3C Verifiable Credential.
moltrust_creditsCheck balance, view pricing, transfer credits, or view history.
moltrust_deposit_infoGet USDC deposit instructions (Base L2).
moltrust_claim_depositClaim credits from a USDC deposit on Base.
moltrust_statsGet MolTrust network statistics.
moltrust_deposit_historyGet USDC deposit history for an agent.
moltrust_erc8004Query the ERC-8004 on-chain agent registry on Base.
moltguard_scoreGet a 0-100 trust score for a Base wallet address.
moltguard_detailGet a detailed trust report with full scoring breakdown.
moltguard_sybilScan a wallet for Sybil indicators and funding clusters.

How to install the MolTrust MCP server

{
  "mcpServers": {
    "moltrust": {
      "command": "uvx",
      "args": ["moltrust-mcp-server"],
      "env": {
        "MOLTRUST_API_KEY": "your-value",
        "MOLTRUST_API_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
MOLTRUST_API_KEYCredential the server authenticates with.Yes
MOLTRUST_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use MolTrust to moltrust register.
  • Use MolTrust to moltrust verify.
  • Use MolTrust to moltrust reputation.

Frequently asked questions

It connects MolTrust to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (moltrust_register, moltrust_verify, moltrust_reputation, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MolTrust directly.