mcpserver.lol
registry/rotifer-protocol-mcp-server
Connection check local install

rotifer-protocol-mcp-server

Search, compare, and install self-evolving AI Agent Genes ranked by Arena fitness

Tools 35
GitHub stars
Installs / wk 224
Licence
Transport stdio
Last checked never

Tools & capabilities

35 tools

Read from the published package source — this server runs locally, so there is no endpoint to query. Names are taken from the code, not observed at runtime, and descriptions are often absent.

agent_run from source
Run a local Agent by name. Executes via the Rotifer CLI (rotifer agent run <agent-name>). The Agent must exist in .rotifer/agents/. Returns stdout/stderr from the execution.
arena_submit from source
auth_status from source
compare_genes from source
Compare two or more Genes by their F(g) fitness metrics. Returns side-by-side fitness breakdown.
compile_gene from source
Compile a local Gene to WASM via the Rotifer CLI (rotifer compile). The Gene must exist in the local genes/ directory. Returns compilation output.
create_agent from source
Create a new Agent by composing one or more local Genes. The Agent is saved to .rotifer/agents/ in the project. Genes must exist locally (wrap them first with wrap_gene).
doctor from source
Check the local TypeScript→WASM toolchain (esbuild / javy) and report what is missing or misconfigured. Read-only: inspects the environment and changes nothing. Use this when compi…
gene from source
Gene name to evaluate
get_arena_rankings from source
Get Arena rankings for a domain. Each row carries a tier —
get_developer_profile from source
Get a creator
get_gene_detail from source
Get detailed information about a specific Gene by its ID or content_hash, including phenotype, fitness, and metadata. At least one of gene_id or content_hash must be provided.
get_gene_reputation from source
get_gene_stats from source
Get download statistics for a Gene, broken down by time period (total, last 7 days, 30 days, 90 days).
get_leaderboard from source
Get the creator reputation leaderboard. Shows top creators ranked by reputation score, including their published gene count, total downloads, and arena wins.
get_mcp_stats from source
get_my_reputation from source
init_gene from source
Initialize a new Rotifer Gene project. Creates a directory with phenotype.json template and starter files. Supports Wrapped, Hybrid, and Native fidelity types.
input from source
JSON input for the template
install_gene from source
Install a Gene from the Rotifer Cloud Registry into the local project. Downloads phenotype, metadata, and the compiled WASM artifact (verified against declared size and sha256) whe…
list_gene_versions from source
list_local_agents from source
List Agents registered in the local project workspace. Returns each Agent
list_local_genes from source
List Genes installed in the local project workspace. Scans the genes/ directory for phenotype.json files and returns metadata, compile status, and cloud origin for each Gene.
login from source
logout from source
rollback_gene from source
Undo the last overwrite of a locally installed Gene, restoring the copy that install_gene replaced. Call without gene_name to list what can currently be rolled back. A rollback con…
rotifer from source
run_gene from source
Execute a local Gene via the Rotifer CLI (rotifer run). The Gene must exist in the local genes/ directory. Returns execution output.
scan_genes from source
Scan source files for candidate gene functions or local SKILL.md files that can be wrapped as Genes. Returns discovered candidates with metadata.
search_genes from source
Search the Rotifer Gene ecosystem. Returns a list of Genes matching the query, filterable by domain and fidelity.
suggest_domain from source
task from source
What the agent should accomplish
template from source
Template ID (quality-advisor, uiux-diagnosis, content-analysis, code-security, doc-qa, web3-toolkit)
test_gene from source
vg_scan from source
wrap_gene from source
Wrap a function or SKILL.md as a Rotifer Gene. Generates phenotype.json from the source. The target must exist in the project.