Back to Browse

Agentguard MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Local spend caps, kill-switch blocking and Ed25519-signed receipts for AI agent tool calls.

About

Local spend caps, kill-switch blocking and Ed25519-signed receipts for AI agent tool calls.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (3 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.

4 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

What You'll Need

Set these up before or after installing:

Local daily spend cap in cents. A nonnegative integer.Optional

Environment variable: AGENTGUARD_MCP_DAILY_CAP_CENTS

Local per-call spend cap in cents. A nonnegative integer.Optional

Environment variable: AGENTGUARD_MCP_PER_CALL_CAP_CENTS

Tenant identifier stamped into local receipts.Optional

Environment variable: AGENTGUARD_MCP_TENANT

Local signing-key, configuration and ledger directory. Defaults to .agentguard in the operating system home directory.Optional

Environment variable: AGENTGUARD_HOME

Local decision storage. ndjson persists receipts across restarts; memory retains this process only.Optional

Environment variable: AGENTGUARD_MCP_LEDGER

Set to 1 to discard and prevent model pricing overrides for this server.Optional

Environment variable: AGENTGUARD_MCP_DISABLE_COST_OVERRIDE

Spend SDK startup lock. Set to 1 to prevent model pricing overrides.Optional

Environment variable: AGENTGUARD_LOCK_COST_OVERRIDES

Set to 1 to hash actor identifiers before they enter local receipts.Optional

Environment variable: AGENTGUARD_ACTOR_DIGEST

Optional AgentGuard license key for license validation and seat registration. Otherwise read from local configuration.Required

Environment variable: AGENTGUARD_LICENSE_KEY

License and seat service base URL. No prompts, tool content or receipts are sent.Optional

Environment variable: AGENTGUARD_LICENSE_ENDPOINT

Set to 1 to disable optional activation telemetry regardless of saved consent.Optional

Environment variable: AGENTGUARD_NO_BEACON

Set to 1 to opt in to content-free activation telemetry. Otherwise saved consent applies, default off.Optional

Environment variable: AGENTGUARD_TELEMETRY

Optional identifier used only by opted-in activation telemetry when no saved install identifier exists.Optional

Environment variable: AGENTGUARD_INSTALL_ID

Legacy fallback for AGENTGUARD_INSTALL_ID in opted-in activation telemetry.Optional

Environment variable: AGENTGUARD_ANONYMOUS_INSTALL_ID

Existing runtime marker. A nonempty value marks opted-in activation telemetry as CI; it does not enable telemetry.Optional

Environment variable: CI

Existing runtime marker. A nonempty value marks opted-in activation telemetry as CI; it does not enable telemetry.Optional

Environment variable: GITHUB_ACTIONS

Existing runtime marker. A nonempty value marks opted-in activation telemetry as CI; it does not enable telemetry.Optional

Environment variable: GITLAB_CI

Existing runtime marker. A nonempty value marks opted-in activation telemetry as CI; it does not enable telemetry.Optional

Environment variable: CIRCLECI

Existing runtime marker. A nonempty value marks opted-in activation telemetry as CI; it does not enable telemetry.Optional

Environment variable: BUILDKITE

Existing runtime marker. A nonempty value marks opted-in activation telemetry as CI; it does not enable telemetry.Optional

Environment variable: VERCEL

Existing runtime marker. A nonempty value marks opted-in activation telemetry as CI; it does not enable telemetry.Optional

Environment variable: NETLIFY

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-merchantguard-agentguard": {
      "env": {
        "CI": "your-ci-here",
        "VERCEL": "your-vercel-here",
        "NETLIFY": "your-netlify-here",
        "CIRCLECI": "your-circleci-here",
        "BUILDKITE": "your-buildkite-here",
        "GITLAB_CI": "your-gitlab-ci-here",
        "GITHUB_ACTIONS": "your-github-actions-here",
        "AGENTGUARD_HOME": "your-agentguard-home-here",
        "AGENTGUARD_NO_BEACON": "your-agentguard-no-beacon-here",
        "AGENTGUARD_TELEMETRY": "your-agentguard-telemetry-here",
        "AGENTGUARD_INSTALL_ID": "your-agentguard-install-id-here",
        "AGENTGUARD_MCP_LEDGER": "your-agentguard-mcp-ledger-here",
        "AGENTGUARD_MCP_TENANT": "your-agentguard-mcp-tenant-here",
        "AGENTGUARD_LICENSE_KEY": "your-agentguard-license-key-here",
        "AGENTGUARD_ACTOR_DIGEST": "your-agentguard-actor-digest-here",
        "AGENTGUARD_LICENSE_ENDPOINT": "your-agentguard-license-endpoint-here",
        "AGENTGUARD_LOCK_COST_OVERRIDES": "your-agentguard-lock-cost-overrides-here",
        "AGENTGUARD_MCP_DAILY_CAP_CENTS": "your-agentguard-mcp-daily-cap-cents-here",
        "AGENTGUARD_ANONYMOUS_INSTALL_ID": "your-agentguard-anonymous-install-id-here",
        "AGENTGUARD_MCP_PER_CALL_CAP_CENTS": "your-agentguard-mcp-per-call-cap-cents-here",
        "AGENTGUARD_MCP_DISABLE_COST_OVERRIDE": "your-agentguard-mcp-disable-cost-override-here"
      },
      "args": [
        "-y",
        "@agentguard-run/mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

@agentguard-run/mcp

AgentGuard® as an MCP server: local spend caps and Ed25519-signed provenance receipts for AI agent actions, usable from any Model Context Protocol host (Claude Desktop, Claude Code, Cursor, Cline, or your own agent runtime).

Zero data plane. Tools accept metadata only: model names, token counts, endpoint URLs. Prompts and completions never pass through this server, and their content stays on your machine. Receipts are content-free.

A configured license uses the license and seat service. Optional activation telemetry requires consent and can be disabled with AGENTGUARD_NO_BEACON=1. Neither path sends prompts, tool content or receipts.

Install

{
  "mcpServers": {
    "agentguard": {
      "command": "npx",
      "args": ["-y", "@agentguard-run/mcp"]
    }
  }
}

Optional environment variables:

VariableDefaultMeaning
AGENTGUARD_MCP_DAILY_CAP_CENTS500Hard per-day spend cap (block on exceed)
AGENTGUARD_MCP_PER_CALL_CAP_CENTS100Hard per-call spend cap (block on exceed)
AGENTGUARD_MCP_TENANTmcp-localTenant scope stamped into receipts
AGENTGUARD_HOME~/.agentguardSigning key and decision-ledger directory
AGENTGUARD_MCP_LEDGERndjsonPersist signed decisions; memory restores process-only storage
AGENTGUARD_MCP_DISABLE_COST_OVERRIDEunset1 discards and prevents pricing overrides
AGENTGUARD_ACTOR_DIGESTunset1 stores SHA-256 digests of actor IDs; provider stays readable

A signing keypair is generated on first run and persisted to <AGENTGUARD_HOME>/mcp-signing.json (0600). Signed decisions are appended to <AGENTGUARD_HOME>/<tenant>/decisions.ndjson, including the public verification key. Exports include prior process runs and new decisions extend the existing chain. Tenant directory names use the spend store's filename normalization. Spend counters remain process-local, as in earlier versions.

All tools accept optional agent_id, task_id, and workflow_id identifier parameters. spend_decide passes these to the call context, signing them as actor.agentId, actor.taskId, and actor.workflowId; the configured tenant becomes actor.tenantId. Other tools accept these metadata fields without recording a spend decision. Prompts, arbitrary content, credentials, and filesystem paths are rejected as IDs. Existing calls without these parameters keep working.

Tools

  • spend_decide: gate a model call before it runs. Returns allow/block plus a signed, hash-chained receipt recording model identity, weights origin country (China-origin families such as GLM, DeepSeek, Qwen, and Kimi are flagged automatically), hosting jurisdiction, and retention posture. Unrecognized endpoints (vLLM, Ollama, TGI, your own cluster) route as self-hosted: zero retention, your jurisdiction.
  • verify_receipt: independently verify any receipt. Change one signed byte and verification fails.
  • export_receipts: export the tenant decision ledger as a verified hash chain, including earlier process runs. Memory mode exports only the current process.
  • set_model_cost: register pricing for self-hosted models (AgentGuard fails closed on unknown costs).
  • provenance_preview: see what would be attested for a model/endpoint without spending.
  • spend_status: active caps, tenant, decision count, signer fingerprint.

Why

When agents move from hosted APIs to self-hosted models, the provider's spend dashboard, rate limits, and audit logs disappear with the provider. AgentGuard puts them back, locally, and adds something hosted providers never gave you: a cryptographic receipt an outsider can verify without trusting you or us.

More: https://agentguard.run/sovereign/ and https://agentguard.run/sovereign/guide/

Verify independently

Any receipt can be checked off-platform at https://agentguard.run/verify or with verify_receipt and the signer public key from spend_status.

Local release verification

Requires Node.js 20.19 or later. Run npm ci, npm test, and npm run scan:release from this package or its public mirror. The lockfile uses the published spend 0.19.0 package; no private sibling checkout is required.

Release checklist: keep package.json, the server version in src/index.ts, and both versions in server.json aligned; run the tests and release scan; publish npm first, publish with mcp-publisher, then verify the registry's active entry. See the registry release guide for exact commands and the public mirror allowlist.

The official registry name is io.github.MerchantGuard/agentguard. Its package entry runs @agentguard-run/mcp locally through npx and stdio.

AgentGuard® is a registered trademark of Dunecrest Ventures Inc. US patent filings pending. This package is governance software, not legal or compliance advice.

Reviews

No reviews yet

Be the first to review this server!