npm @agentresources/mcpstdioMITupdated 4mo ago
Operational MCP server for Agent Resources — Trust Card lookup, signed telemetry, memory verbs, signing-key management, and the ar CLI in one package.
What can you do with agentresources mcp?
@agentresources/mcp
Operational MCP server for Agent Resources — Trust Card lookup, signed telemetry, memory verbs, signing-key management, and the
arCLI in one package.
This repo is the public mirror of @agentresources/mcp. The package is
published to npm from the AR monorepo; this mirror exists so the MCP Registry,
punkpeye/awesome-mcp-servers, and any agent that wants to fork the source
can read it without authenticating.
Install
# Run as a one-shot MCP server (recommended for Claude Desktop / Cursor / Copilot CLI)
npx -y @agentresources/mcp
# Or install globally to get the `ar` CLI
npm i -g @agentresources/mcp
ar doctor # 6-check self-diagnostic
ar skills get agent-resources
Wiring
// .mcp.json (Claude Desktop / Cursor / Copilot CLI)
{
"mcpServers": {
"agentresources": {
"command": "npx",
"args": ["-y", "@agentresources/mcp"],
"env": {
"AR_API_BASE": "https://api.agentresources.xyz",
"AR_AGENT_PRIVATE_KEY": "0x...", // optional; needed for write-side tools
},
},
},
}
Tools
| Tool | What it does |
|---|---|
trust_card_lookup |
Fetch + EIP-712 verify any AR-issued Trust Card by wallet or agent UUID. |
telemetry_* |
Emit signed telemetry envelopes to the AR gateway (writes — needs key). |
memory_* |
remember / recall / forget / improve against the AR memory loop. |
signing_keys_* |
Register / rotate / revoke per-agent secp256k1 signing keys. |
A second public package, @agentresources/docs-mcp,
is a read-only doc explorer that runs without any AR credentials. Use it for
agents that only need to read AR specs.
Skills are free
@agentresources/mcp is free. Paid AR products — Trust Card issuance,
Scan, KYA, Retraining, on-chain attestation — are billable API services.
This MCP server doesn't expose paid endpoints behind a free fly-by; it
delegates to the gateway, which enforces the x402 payment challenge. See
PHILOSOPHY.
Crypto-scam notice
AR has no token, no presale, no airdrop, no points, no staking. We will
never DM you to ask for seed phrases, private keys, or funds. The only
on-chain artefacts are ERC-8004 Identity NFTs, daily Merkle anchors, and the
AR Treasury Agent (Base mainnet tokenId 45880). Report impersonation to
contact@agentresources.xyz.
How this repo stays in sync
This repo is a downstream mirror of the canonical source at
packages/mcp/ in the AR monorepo. CI on every push:
- Re-runs
npm packagainst the published@agentresources/mcp@<version>and diffs the tarball contents againstsrc/here. - Validates
server.jsonagainst the live MCP Registry schema.
To open a PR, edit the canonical source in the AR monorepo — the change will land here via the next sync.
License
MIT © Agent Resources
Trust Card
Verify the publisher of this repo: https://api.agentresources.xyz/.well-known/trust-card/agent/32f4ec0b-452e-467d-997b-ebd49730bb0a
Install
Add agentresources mcp to your client. Pick the one you use.
claude mcp add mcp -- npx -y @agentresources/mcpcodex mcp add mcp -- npx -y @agentresources/mcpamp mcp add mcp -- npx -y @agentresources/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@agentresources/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@agentresources/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@agentresources/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@agentresources/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@agentresources/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@agentresources/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@agentresources/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@agentresources/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @agentresources/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
1 tool
agentresources mcp exposes one tool to a connected agent.
- trust_card_lookup
- Fetch + EIP-712 verify any AR-issued Trust Card by wallet or agent UUID.
Score
64 / 100
Good
- Documentation22/25
- Maintenance13/25
- Trust13/20
- Capability4/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 119 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 1 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | May 4, 2026 |