SuperInstance MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SHOAL_URL | No | SHOAL semantic oracle | http://localhost:8787 |
| FLEET_API_URL | No | Fleet dashboard API | https://fleet-dashboard-api.casey-digennaro.workers.dev |
| VECTOR_API_URL | No | Fleet vector search | https://fleet-vector-api.casey-digennaro.workers.dev |
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 |
|---|---|
| fleet_statusA | Get the current SuperInstance fleet status including γ (gamma) / η (eta) / C balance, agent count, and convergence metrics. No parameters required. |
| fleet_searchA | Semantic search of the SHOAL oracle and fleet vector index for patterns, crates, solutions, and knowledge. Returns ranked results with conservation metadata. |
| fleet_budgetB | Check the remaining compute budget for a task. Uses the conservation law: remaining = C - γ_used where C = log₂(3). Input gamma_used and eta_produced to see what's left. |
| conservation_checkA | Verify that a code change or operation maintains the SuperInstance conservation invariants. Checks that γ + η ≤ C where C = log₂(3) ≈ 1.585. Returns validity, total, delta, and a message. |
| ternary_validateA | Validate that an array of values are valid ternary signals in {-1, 0, +1}. Returns validity flag, any invalid values, and a message. |
| crate_infoA | Look up detailed information about a SuperInstance crate — name, version, description, repo, docs, and its role in the conservation law framework. |
| fleet_agentsA | List all registered SuperInstance fleet agents and their current status including role, phase, γ/η budget, assigned crates, and worker count. No parameters required. |
| ecosystem_statsA | Get total SuperInstance ecosystem numbers: crates published, workers deployed, tests, repos, theorems proven, and the conservation law. No parameters required. |
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 8 tools
Each tool targets a distinct function: conservation checking, crate info, ecosystem stats, fleet listing, budget calculation, semantic search, fleet status, and ternary validation. No two tools have overlapping purposes.
Tools predominantly use snake_case with noun-based names (e.g., fleet_agents, crate_info). 'ternary_validate' and 'conservation_check' place the verb at the end, introducing slight inconsistency, but overall the pattern is predictable.
With 8 tools, the server is well-scoped for its apparent purpose of querying and verifying aspects of the SuperInstance ecosystem. Neither too sparse nor overloaded.
The tools cover key informational needs (stats, status, search, validation) but lack any write or action-oriented operations (e.g., create crate, deploy agent, submit theorem). This leaves notable gaps for a system that involves active management.