agent-envelope-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AE_API_KEY | No | Vault-issued API key required for the governed tools (ae_get_agent, ae_verify_action, ae_mint). |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| ae_verify_sovereignA | Verify a signed message against a known agent address. Pure crypto, no vault, no API key, no network. Verification is always free. |
| ae_get_agentA | Fetch the vault-registered public record for an agent id. Requires a vault-issued API key. |
| ae_verify_actionA | Verify a signed action against the vault-held record for an agent. Requires a vault-issued API key. |
| ae_mintA | Mint a capability through the vault from a MintDelegate and a signed MintRequest. Returns a mint receipt. Requires a vault-issued API key. This is a governed action. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool addresses a distinct operation: public signature verification, agent record retrieval, action verification, and capability minting. The two verification tools are clearly separated by context and required credentials, so there is no ambiguity.
All tools share the ae_ prefix and use lowercase snake_case, which is predictable overall. However, ae_verify_sovereign uses an adjective-like modifier and ae_mint is a single verb, slightly deviating from the verb_noun pattern of the others.
With only 4 tools, the server is well-scoped and focused on the envelope verification and minting domain. Each tool has a clear purpose, and the count is neither too thin nor excessive.
The toolset covers the core operations including public verification, record lookup, action verification, and capability minting. While there might be gaps such as revocation or listing, the primary lifecycle appears adequately represented.