Developer Documentation

Developer documentation for the MO§ES™ AI operator evaluation platform. OpenAPI spec, MCP server with 25 tools, CLI, telemetry schema, and governance constraints. MO§ES™ exposes three integration surfaces for AI agents and developers: an MCP server, an OpenAPI spec, and a CLI.

Run the Demo

The fastest way to understand the platform is to run the 10-step demo pipeline on 50 synthetic operators:

curl -sL https://mos2es.org/demo/run.py | python3 -

Or see the demo page for all run options, including individual commands, the test suite, and the MCP server.

You can also browse the interactive web walkthrough for a visual explanation of each pipeline stage.

OpenAPI Specification

The full API specification is available at /openapi.json. It describes 16 read endpoints and 5 write endpoints across the pilot evaluation surface.

MCP Server

MO§ES™ ships a Model Context Protocol server with 21 tools. The MCP server allows Claude, ChatGPT, Cursor, and other AI agents to call the platform natively.

Live endpoint: https://mcp.mos2es.org/mcp (Streamable HTTP)

Server info: https://mcp.mos2es.org/

Transport: Streamable HTTP (remote) or stdio (local via Python SDK)

SDK: Python MCP SDK (FastMCP) for local, Cloudflare Worker for remote

Quick start

# Initialize
curl -X POST https://mcp.mos2es.org/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"initialize","params":{},"id":1}'

# List tools
curl -X POST https://mcp.mos2es.org/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"tools/list","params":{},"id":2}'

# Call a tool
curl -X POST https://mcp.mos2es.org/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"get_pilot_status","arguments":{}},"id":3}'

Tool list

ToolTypeDescription
get_pilot_statusreadCohort size, observation count, date range, data quality
get_operator_profilereadOperator metrics, percentiles, benchmarks, divergence flags
get_cohort_distributionreadPercentile bands for a metric across the cohort
get_composite_scoreread0-100 developmental score (DEVELOPMENTAL, not PERSONNEL)
get_composite_score_summaryreadAggregate score distribution (no individual rankings)
get_diagnosticsreadPattern detections and diagnoses (HYPOTHESIS, never fact)
get_data_qualityreadCompleteness, coverage, validity metrics
find_usage_operation_divergencereadUsage vs operation divergence flags
get_workflow_fitreadOperator-workflow fit analysis
get_intervention_statusreadActive and closed interventions
list_pilot_optionsreadAvailable metrics, eval families, benchmark classes
validate_pilot_configurationreadValidate a pilot config before deployment
compare_operator_to_referencereadCompare operator to reference population
get_executive_dashboardreadSelf-contained HTML dashboard
verify_changereadVerify a measured change after intervention
create_pilot_configurationreadGenerate a pilot configuration from parameters
assign_interventionwriteAssign intervention to operator (requires auth)
close_interventionwriteClose an intervention with outcome notes (requires auth)
create_experimentwriteCreate an experiment configuration (requires auth)
record_workflow_observationwriteRecord a workflow fit observation (requires auth)
attach_outcome_datasetwriteAttach external outcome dataset (ASSOCIATION, never CAUSATION) (requires auth)

CLI

The enterprise CLI provides 14 command groups for direct access to all platform functionality:

enterprise status
enterprise operator <id>
enterprise cohort --metric leverage
enterprise score composite <operator_id>
enterprise score composite-summary
enterprise benchmark operator <id> --metric leverage
enterprise benchmark cohort --metric leverage
enterprise diagnose <operator_id>
enterprise intervene assign <operator_id> --type <type>
enterprise export dashboard --output dashboard.html
enterprise ingest claude --file <path>
enterprise ingest api-groq --operator op_001 --days 30

Canonical Telemetry

The platform operates on content-free token counts — no prompt text required:

Metrics

Governance Constraints

Repository

Public site repo: github.com/SunrisesIllNeverSee/moses (public)

Contact

Email: burnmydays@proton.me