Skip to main content
ClaudeWave

Agent authority for any MCP client. Sovereign verification free, vault governance the value. Owned by no framework, embeddable by all.

MCP ServersOfficial Registry0 stars0 forksJavaScriptUpdated today
Install in Claude Code / Claude Desktop
Method: NPX · agent-envelope-mcp
Claude Code CLI
claude mcp add agent-envelope-mcp -- npx -y agent-envelope-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "agent-envelope-mcp": {
      "command": "npx",
      "args": ["-y", "agent-envelope-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# agent-envelope-mcp

The neutral authority layer for agent runtimes, as an [MCP](https://modelcontextprotocol.io) server.

Any MCP client — Claude, an OpenAI agent, LangChain, CrewAI, a custom runtime —
can call these tools to **check and issue agent authority** without building its
own policy engine, audit log, or verification stack. AgentEnvelope is owned by
no framework, so every framework can embed it.

## Run

```bash
npx agent-envelope-mcp
```

It speaks MCP over stdio. No API key is needed to start, or to use the sovereign
verifier — only the vault-governed tools require `AE_API_KEY`.

## Wire it into an MCP client

Point your client at the command and pass the vault-issued key in the
environment (only needed for the custody tools):

```jsonc
{
  "mcpServers": {
    "agent-envelope": {
      "command": "npx",
      "args": ["-y", "agent-envelope-mcp"],
      "env": { "AE_API_KEY": "your-vault-issued-key" }
    }
  }
}
```

## Tools

| Tool | Mode | Credential |
|---|---|---|
| `ae_verify_sovereign` | Sovereign | none — offline, always free |
| `ae_get_agent` | Custody | `AE_API_KEY` |
| `ae_verify_action` | Custody | `AE_API_KEY` |
| `ae_mint` | Custody | `AE_API_KEY` |

- **`ae_verify_sovereign`** — verify a signed message against a known agent
  address. Pure crypto: no vault, no key, no network. Verification is always free.
- **`ae_get_agent`** — fetch the vault-registered public record for an agent id.
- **`ae_verify_action`** — verify a signed action against the vault-held record.
- **`ae_mint`** — mint a capability through the vault from a `MintDelegate` and a
  signed `MintRequest`, returning a mint receipt. This is a governed action.

The sovereign verifier needs no vault and no key. The vault-gated tools are the
governed surface a framework offloads rather than rebuilds.

## Programmatic use

```js
import { createServer } from 'agent-envelope-mcp';
// mount createServer() on your own MCP transport
```

## Environment

| Variable | Required for | Purpose |
|---|---|---|
| `AE_API_KEY` | `ae_get_agent`, `ae_verify_action`, `ae_mint` | Vault-issued API key |

The server is fail-closed: vault-gated tools return an error result when
`AE_API_KEY` is absent rather than exposing an unauthenticated surface.

## License

MIT

What people ask about agent-envelope-mcp

What is BlackBoxEngineering/agent-envelope-mcp?

+

BlackBoxEngineering/agent-envelope-mcp is mcp servers for the Claude AI ecosystem. Agent authority for any MCP client. Sovereign verification free, vault governance the value. Owned by no framework, embeddable by all. It has 0 GitHub stars and was last updated today.

How do I install agent-envelope-mcp?

+

You can install agent-envelope-mcp by cloning the repository (https://github.com/BlackBoxEngineering/agent-envelope-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is BlackBoxEngineering/agent-envelope-mcp safe to use?

+

BlackBoxEngineering/agent-envelope-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains BlackBoxEngineering/agent-envelope-mcp?

+

BlackBoxEngineering/agent-envelope-mcp is maintained by BlackBoxEngineering. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to agent-envelope-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy agent-envelope-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: BlackBoxEngineering/agent-envelope-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/blackboxengineering-agent-envelope-mcp)](https://claudewave.com/repo/blackboxengineering-agent-envelope-mcp)
<a href="https://claudewave.com/repo/blackboxengineering-agent-envelope-mcp"><img src="https://claudewave.com/api/badge/blackboxengineering-agent-envelope-mcp" alt="Featured on ClaudeWave: BlackBoxEngineering/agent-envelope-mcp" width="320" height="64" /></a>

More MCP Servers

agent-envelope-mcp alternatives