Skip to main content
mcpSource-backedReview first Safety Privacy

AgentTrust MCP Server for Claude

AgentTrust stdio MCP server giving AI agents verified identity with email, instant messaging, and cloud file storage across 19 Ed25519-signed tools.

HarnessClaude CodeCodexCursorClaude Desktop
Review first review before installing

Open the source and read safety notes before installing.

Safety notes

  • Email tools can send outbound mail from your `@agenttrust.ai` address.
  • Messaging tools can contact other agents and escalate to humans via HITL flows.
  • Drive tools upload, download, and delete files—confirm destructive operations.
  • Ed25519 signing keys are generated locally; back up `~/.agenttrust` before rotation.

Privacy notes

  • Email bodies, attachments, messages, and uploaded files are processed by AgentTrust.
  • Signing keys and API keys are stored locally with 0600 permissions but still require host protection.
  • Outbound email from address is enforced server-side to your agent's `@agenttrust.ai` identity.

Prerequisites

  • AgentTrust account with a registered agent and API key (`atk_...`).
  • Node.js for the `@agenttrust/mcp-server` npm package.
  • Claude Desktop, Claude Code, Cursor, or another MCP client with stdio transport.
  • Optional interactive setup via `npx @agenttrust/mcp-server init` for Ed25519 signing keys.

Schema details

Install type
cli
Reading time
4 min
Difficulty score
40
Troubleshooting
Yes
Breaking changes
No
Source repository stats
Scope
Source repo
Collection metadata
Estimated setup
10 minutes
Difficulty
intermediate
Tool listing metadata
Full copyable content
{
  "mcpServers": {
    "agenttrust": {
      "command": "npx",
      "args": ["-y", "@agenttrust/mcp-server"],
      "env": {
        "AGENTTRUST_API_KEY": "atk_your_key_here"
      }
    }
  }
}

About this resource

Overview

AgentTrust gives every AI agent a verified identity with its own email address, instant messaging, and cloud file storage. The @agenttrust/mcp-server package exposes 19 tools across email, messaging, and drive domains over stdio, with Ed25519-signed agent-to-agent messages.

Documentation and source are in agenttrust/mcp-server.

Features

  • Seven email tools: inbox, read, send, reply, forward, draft, attachments.
  • Seven messaging tools: send, inbox, context, reply, comment, escalate, discover.
  • Five drive tools: upload, list, download, delete, usage.
  • Ed25519 message signing with locally generated keys.
  • Interactive init CLI for first-time configuration.

Use Cases

  • Send a quote request email to a supplier from your agent address.
  • Message another agent discovered via agenttrust_discover.
  • Upload a PDF report and share the file ID over A2A messaging.
  • Escalate a purchase approval to a human when limits are exceeded.
  • Read and reply to inbound procurement threads.

Installation

Claude (Connectors)

  1. Sign up at agenttrust.ai and generate an atk_ API key.
  2. Add the stdio server with AGENTTRUST_API_KEY in MCP env settings.
  3. Optionally run npx @agenttrust/mcp-server init for signing keys.
  4. Send a test email or message to verify the agent identity.

Claude Code

claude mcp add agenttrust -- npx -y @agenttrust/mcp-server
claude mcp list

Other MCP clients

Add the connector using the JSON configuration below in your MCP client settings.

Configuration

{
  "mcpServers": {
    "agenttrust": {
      "command": "npx",
      "args": ["-y", "@agenttrust/mcp-server"],
      "env": {
        "AGENTTRUST_API_KEY": "atk_your_key_here"
      }
    }
  }
}

For authenticated setups:

{
  "mcpServers": {
    "agenttrust": {
      "command": "npx",
      "args": ["-y", "@agenttrust/mcp-server"],
      "env": {
        "AGENTTRUST_API_KEY": "atk_your_key_here",
        "AGENTTRUST_ENDPOINT": "https://agenttrust.ai"
      }
    }
  }
}

Config is persisted at ~/.agenttrust/config.json; protect that directory on shared machines.

Examples

Send email

Use agenttrust_email_send to email user@example.com about a 500-unit quote request.

Agent message

Discover procurement-agent and send a message requesting pricing by Friday.

Escalate

Escalate task tk_abc123 because the purchase exceeds my authorization limit.

Security

  • Treat AgentTrust API keys like combined email and messaging credentials.
  • Review outbound email drafts before send in regulated workflows.
  • Rotate keys with agenttrust-mcp --regen-keys if a host is compromised.

Troubleshooting

Missing API key

Set AGENTTRUST_API_KEY or run npx @agenttrust/mcp-server init.

Send address rejected

Agents can only send from their own @agenttrust.ai address.

Signature errors

Regenerate Ed25519 keys with --regen-keys and update peer trust if needed.

Attachment download fails

Signed URLs expire; request a fresh attachment URL.

Duplicate Check

No existing AgentTrust entry was found in content/mcp/. This differs from AgentDM because AgentTrust bundles verified email, drive, and signed A2A messaging rather than general grid channels.

Source citations

Add this badge to your README

Show that AgentTrust MCP Server for Claude is listed on HeyClaude. Paste this Markdown into your README — it renders the badge and links back to this page.

Listed on HeyClaude
[![Listed on HeyClaude](https://heyclau.de/badge/mcp/agenttrust-identity-and-trust-for-a2a-agents-mcp-server.svg)](https://heyclau.de/entry/mcp/agenttrust-identity-and-trust-for-a2a-agents-mcp-server)

How it compares

AgentTrust MCP Server for Claude side by side with 3 alternatives on trust, install, platform support, and disclosed safety notes — all from reviewed registry metadata.

FieldAgentTrust MCP Server for Claude

AgentTrust stdio MCP server giving AI agents verified identity with email, instant messaging, and cloud file storage across 19 Ed25519-signed tools.

Open dossier
Adeu MCP Server for Claude

Adeu MCP server and SDKs translate DOCX files to token-efficient Markdown with CriticMarkup, apply safe Track Changes edits, and optionally integrate with live Microsoft Word on Windows.

Open dossier
AgentDM MCP Server

AgentDM provides a hosted MCP grid for agent-to-agent messaging with OAuth or API key auth at the documented grid endpoint.

Open dossier
AnomalyArmor MCP Server for Claude

AnomalyArmor armor-mcp stdio server with 52 consolidated data observability tools for alerts, freshness, schema drift, quality metrics, lineage, and AI recommendations.

Open dossier
Trust
Install riskReview firstReview firstReview firstReview first
Notes Safety Privacy Safety Privacy Safety Privacy Safety Privacy
Categorymcpmcpmcpmcp
Sourcesource-backedsource-backedsource-backedsource-backed
AuthorAgentTrustAdeuAgentDMAnomalyArmor
Added2026-06-142026-06-142026-06-172026-06-14
Platforms
Claude CodeCodexCursorClaude Desktop
Claude CodeClaude Desktop
Claude CodeClaude Desktop
Claude CodeClaude Desktop
Source repo
Safety notesEmail tools can send outbound mail from your `@agenttrust.ai` address. Messaging tools can contact other agents and escalate to humans via HITL flows. Drive tools upload, download, and delete files—confirm destructive operations. Ed25519 signing keys are generated locally; back up `~/.agenttrust` before rotation.`process_document_batch` can modify DOCX content and apply Track Changes when edits pass validation. `finalize_document` can strip metadata and lock documents; review output before external distribution. Live Word integration edits the active document in memory; save backups before batch operations. Adeu Cloud email workflows fetch external attachments; treat counterparty documents as untrusted input.send_message and related tools can deliver content to other agents or channels. set_skills modifies agent skill configuration—restrict to non-production agents first.Tools can create alert rules, freshness schedules, metrics, and monitoring configurations. manage_asset and related tools may trigger discovery jobs on production sources. Alert acknowledgement and resolution changes operational state. Review AI recommendations before applying automated monitoring at scale.
Privacy notesEmail bodies, attachments, messages, and uploaded files are processed by AgentTrust. Signing keys and API keys are stored locally with 0600 permissions but still require host protection. Outbound email from address is enforced server-side to your agent's `@agenttrust.ai` identity.Local Adeu tools process documents on your machine and do not phone home with file contents by default. Document text sent to your LLM provider is subject to that provider's data handling policies. Optional Adeu Cloud routes large validation or email workflows through Adeu servers under separate terms.Messages, channel metadata, and agent lists enter MCP client context and vendor logs. Store Bearer tokens in secret managers—not repository files.Table names, schema metadata, alert details, and sample metrics are sent to AnomalyArmor. Natural language `ask_question` queries may expose internal data catalog context to the LLM. API keys grant access until revoked in AnomalyArmor settings.
Prerequisites
  • AgentTrust account with a registered agent and API key (`atk_...`).
  • Node.js for the `@agenttrust/mcp-server` npm package.
  • Claude Desktop, Claude Code, Cursor, or another MCP client with stdio transport.
  • Optional interactive setup via `npx @agenttrust/mcp-server init` for Ed25519 signing keys.
  • Node.js 18+ for the `@adeu/mcp-server` npm package, or Python with uv for the `adeu-server` backend.
  • Local access to `.docx` files you intend to read or redline; live Word editing requires Windows with Microsoft Word installed.
  • Claude Desktop, Claude Code, Cursor, or another MCP client with stdio transport support.
  • Optional Adeu Cloud account only if you enable email fetch or advanced validation workflows.
  • AgentDM account at agentdm.ai.
  • OAuth client setup or API key for Bearer authentication.
  • Review of which agents and channels the MCP client may message.
  • AnomalyArmor account with an API key from Settings → API Keys.
  • Python uv/uvx available on the host running the MCP client.
  • Connected data sources already onboarded in AnomalyArmor.
  • Claude Code, Cursor, or another MCP client with stdio transport.
Install
claude mcp add agenttrust -- npx -y @agenttrust/mcp-server
claude mcp add adeu -- npx -y @adeu/mcp-server
claude mcp add --transport http agentdm https://api.agentdm.ai/mcp/v1/grid --header "Authorization: Bearer YOUR_TOKEN"
claude mcp add armor -- uvx armor-mcp
Config
{
  "mcpServers": {
    "agenttrust": {
      "command": "npx",
      "args": ["-y", "@agenttrust/mcp-server"],
      "env": {
        "AGENTTRUST_API_KEY": "atk_your_key_here",
        "AGENTTRUST_ENDPOINT": "https://agenttrust.ai"
      }
    }
  }
}
{
  "mcpServers": {
    "adeu": {
      "command": "uvx",
      "args": ["--from", "adeu", "adeu-server"],
      "env": {
        "ADEU_CLOUD_API_KEY": "YOUR_OPTIONAL_CLOUD_KEY"
      }
    }
  }
}
{
  "mcpServers": {
    "agentdm": {
      "url": "https://api.agentdm.ai/mcp/v1/grid",
      "type": "http",
      "headers": {
        "Authorization": "Bearer agentdm_..."
      }
    }
  }
}
{
  "mcpServers": {
    "armor": {
      "command": "uvx",
      "args": ["armor-mcp"],
      "env": {
        "ARMOR_API_KEY": "aa_live_your_key_here"
      }
    }
  }
}
Citations
ClaimUnclaimedUnclaimedUnclaimedUnclaimed

Signals

Loading live community signals…

More like this, weekly

A short, calm digest of reviewed Claude resources. Unsubscribe any time.