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.
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
- Scope
- Source repo
- Estimated setup
- 10 minutes
- Difficulty
- intermediate
- Website
- https://agenttrust.ai
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
initCLI 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)
- Sign up at agenttrust.ai and generate an
atk_API key. - Add the stdio server with
AGENTTRUST_API_KEYin MCP env settings. - Optionally run
npx @agenttrust/mcp-server initfor signing keys. - 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-keysif 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.
[](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.
| Field | 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. 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 risk | Review first | Review first | Review first | Review first |
| Notes | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ |
| Category | mcp | mcp | mcp | mcp |
| Source | source-backed | source-backed | source-backed | source-backed |
| Author | AgentTrust | Adeu | AgentDM | AnomalyArmor |
| Added | 2026-06-14 | 2026-06-14 | 2026-06-17 | 2026-06-14 |
| Platforms | Claude CodeCodexCursorClaude Desktop | Claude CodeClaude Desktop | Claude CodeClaude Desktop | Claude CodeClaude Desktop |
| Source repo | — | — | — | — |
| 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. | ✓`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 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. | ✓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 |
|
|
|
|
| Install | | | | |
| Config | | | | |
| Citations | ||||
| Claim | Unclaimed | Unclaimed | Unclaimed | Unclaimed |
Signals
Loading live community signals…
A short, calm digest of reviewed Claude resources. Unsubscribe any time.