Sovereign MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AWS_REGION | No | AWS region for Bedrock | |
| OLLAMA_URL | No | URL of the Ollama server | http://localhost:11434 |
| GROQ_API_KEY | No | API key for Groq | |
| BEDROCK_MODEL_ID | No | Bedrock model ID | |
| AWS_ACCESS_KEY_ID | No | AWS access key for Bedrock | |
| AWS_SECRET_ACCESS_KEY | No | AWS secret access key for Bedrock |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| compute_routeC | Route a query to the best available compute provider (Bedrock → Groq → Ollama). Returns result wrapped in Magma envelope. |
| ere_verifyB | Run ERE 5-pass verification on a content string. Returns pass/fail per pod and METATRON certification. |
| proxy_registerB | Register a named proxy tool at a URL. Proxied tools are callable via agent_dispatch. |
| proxy_list | List all registered proxy tools and their status. |
| magma_sealB | Wrap any content in a Magma envelope with ERE verification and WORM hash. |
| agent_dispatchA | Dispatch a task to a registered proxy tool or sovereign agent. Runs ERE gate before forwarding. |
| magma_execA | Execute a Magma instruction string. Parses §VERB:AGENT:ACTION{payload}, routes to the correct executor (COMPUTE→Bedrock, QUERY→Groq, SEAL→WORM, DISPATCH→proxy), signs result with governor Ed25519 key, and returns Magma envelope. Supports pipeline syntax with >>. |
| governor_pubkeyA | Return the governor public key (base64 Ed25519 SPKI DER). Use this to verify Magma envelope signatures externally. |
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 7 tools
Tools have mostly clear boundaries, but `agent_dispatch` and `compute_route` could be confused for routing tasks, and `magma_exec` is a meta-tool that overlaps with several others. Still, descriptions are detailed enough to differentiate.
Names follow a consistent `<system>_<action>` pattern (e.g., `ere_verify`, `proxy_register`) except `compute_route` which reverses the order. Otherwise well-structured.
7 tools cover the core functionality without bloat. Each tool serves a distinct purpose and the set feels well-scoped for a sovereign computation system.
Covers primary operations (routing, verification, sealing, dispatch, execution, key retrieval). Missing explicit tools for verifying signatures or listing proxies, but the existing set handles core workflows.