Systems Intelligence Performative Commercial Benchmarking
This server is a read-and-write MCP endpoint for evaluating and piloting how people operate AI systems, using synthetic operator cohorts and content-free token telemetry to compute metrics, benchmarks, diagnostics, interventions, lineage, and organizational insights.
Inspect pilot health: get cohort size, observation counts, date ranges, data quality, and active interventions.
Review operator performance: pull pseudonymous operator profiles with the 5 canonical metrics (yield, leverage, token SNR, construction, divergence), percentiles, and benchmark positions.
Benchmark and compare: get cohort metric distributions, composite scores, reference-population comparisons, and nearest-neighbor operator similarity.
Diagnose and decompose: run pattern detectors, usage-operation divergence analysis, workflow fit analysis, and operator-vs-system effect decomposition.
Intervene and verify: assign/close interventions, record workflow observations, create experiments, and verify pre/post changes (labeled ASSOCIATION, never causation).
Trace outcomes and lineage: follow full lineage chains from state through transformations to committed outcomes, summarize lineage across the cohort, and correlate metrics with outcome quality.
Explore organizational topology: see team-level distributions, capability concentration, platform adoption, single points of failure, and cross-team complementarity.
Generate configurations: list pilot options, validate or create pilot configurations, and get executive dashboard generation commands.
Write with authorization: create experiments, assign interventions, record observations, and attach external outcome datasets — all requiring pilot authorization.
Allows attaching external outcome datasets from GitHub for join analysis, enabling correlation of GitHub activity with operator performance metrics.
MO§ES™ Enterprise — AI Operator Evaluation Platform
Live: mos2es.org — Systems intelligence for the human-AI operating system. The new standard in performative metrics and benchmarks for AI operators. Baselines system intelligence for everyday operations and AI workflows. Content-free token telemetry. Never your prompts.
Enterprise AI operator evaluation. Measure how people operate AI — not the AI model itself.
MO§ES™ curates a company's system intelligence — how effectively people drive AI systems across tools, tasks, workflows, and conditions. The same way BI sees the business, MO§ES™ sees how the business operates AI.
Table of Contents
Related MCP server: scan-your-ai-toolkit
What is MO§ES™?
MO§ES™ is an enterprise AI operator evaluation platform. It measures how people operate AI systems — not the AI models themselves, not usage volume, not self-reported proficiency. Using content-free token telemetry (input, output, cache read, cache write — no prompt text, no response text), MO§ES™ baselines system intelligence across:
Operators — how effectively individuals drive AI
Teams — cohort distributions and capability topology
Workflows — where AI fits in the work, not just whether it's used
Organizations — cross-team benchmarking and capability mapping
The platform builds bespoke evals around your workflows, roles, and AI systems, benchmarks performance against internal and external reference populations, diagnoses capability gaps and divergence patterns, tests targeted interventions, and re-measures what changes.
The positioning
BI sees the business. MO§ES™ sees how the business operates AI.
LMSYS benchmarks models. Braintrust evaluates product outputs. Langfuse traces LLM calls. WakaTime tracks time. CostHawk tracks spend. None of them see the system intelligence of everyday operations and AI workflows. MO§ES™ is the missing layer.
The MO§ES™ ecosystem
Repo / Site | What it is | URL |
MO§ES™ Enterprise (this repo) | The platform — Python eval engine, CLI, MCP server, demo, promo, enterprise demo, workers | |
SigRank SignalAF | The public leaderboard — operator rankings by token cascade efficiency | |
SigRank MCP | The instrument — extracts token pillars, computes cascade, submits to leaderboard |
|
SIGNOMY | Governed AI agent marketplace — ranked agents form teams, run missions, earn revenue | |
SigEconomy | Public LLM operator evals — read-only leaderboard, SEO/AEO surface |
Live surfaces
Surface | URL | What |
Promo site | Marketing, methodology, demo, comparisons, booking | |
Enterprise demo | Interactive product walkthrough (evaluate → diagnose → workflow → compare) | |
MCP server | 27-tool MCP server (22 read + 5 write), streamable HTTP | |
MCP server info | Server info JSON (version, tool count, transport) | |
MCP server card | Full server card with all tool schemas | |
OpenAPI spec | REST API specification | |
LLM guidance | llms.txt for AI agents and crawlers | |
Sitemap | XML sitemap | |
Book a demo | B2B demo booking with structured intake form |
Quick start
Run the demo (one-liner, no clone needed)
curl -sL https://mos2es.org/demo/run.py | python3 -This clones the repo to a temp directory, installs rich, and runs the full 11-step demo pipeline. Requires Python 3.10+ and git.
Clone and run
git clone https://github.com/SunrisesIllneverSee/Moses_Enterprise_B2BPilot_.git
cd Moses_Enterprise_B2BPilot_/_01_platform
pip install rich
python3 -m src.cli.main demo fullRun the test suite
cd _01_platform
python3 -m pytest tests/ -q
# 527 tests passRun the MCP server locally
cd _01_platform
pip install mcp
python3 -m src.mcp_server.serverUse the remote MCP server
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"moses": {
"url": "https://mcp.mos2es.org/mcp",
"transport": "http"
}
}
}Or call tools directly:
curl -s -D /tmp/h -X POST https://mcp.mos2es.org/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}' > /dev/null
SID=$(grep -i "^mcp-session-id:" /tmp/h | tr -d '\r\n' | sed 's/.*: //')
curl -s -X POST https://mcp.mos2es.org/mcp \
-H "Content-Type: application/json" -H "MCP-Session-Id: $SID" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list"}' | python3 -m json.toolThe 11-step demo pipeline
Step | Name | What it does |
1 | LOAD | Load 50-operator synthetic cohort |
2 | EVALUATE | Compute per-observation metrics |
3 | BENCHMARK | Compute percentile positions |
4 | DIAGNOSE | Run pattern detectors |
5 | OPERATOR×SYSTEM | Decompose operator vs system effects |
6 | INTERVENE | Assign targeted interventions |
7 | RE-EVALUATE | Re-measure post-intervention |
8 | OUTCOME LINEAGE | Trace observations → transformations → artifacts → outcomes |
9 | REPORT | Generate markdown + PDF pilot readout |
10 | VISUALIZE | Generate 9 architecture diagrams |
11 | DASHBOARD | Export executive HTML dashboard |
The demo runs on fully synthetic data. No real operators, no real prompt text, no real API calls. Deterministic — running twice produces identical results.
The 5 canonical metrics
Metric | What it measures |
Yield | Fraction of AI output that survives to committed state |
Leverage | Output value per token consumed |
Token SNR | Signal-to-noise ratio in token usage |
Construction | Fraction of output built incrementally vs replaced |
Divergence | Gap between usage patterns and operational patterns |
15 evaluation families. 13 benchmark classes. 4 measurement levels (Operator, Team, Workflow, Organization).
Repository structure
_01_platform/ Python platform (the product)
src/ Source code (domain, metrics, analysis, diagnostics, CLI, MCP server)
tests/ 527 tests
demo_data/ Synthetic demo cohort (50 operators, 1,668 observations)
scripts/ Utility scripts
schemas/ JSON schemas
_02_demo-website/ Enterprise demo site (enterprise.mos2es.org)
_03_promo-site/ Promo site (mos2es.org)
vs/ 16 competitor comparison pages
alternatives/ 8 alternatives listicle pages
concepts/ 10 concept explainer pages
guides/ 4 how-to guides
demo/run.py One-liner demo runner
.well-known/mcp.json MCP server discovery
_04_onepager/ One-pager site
_workers/ Cloudflare Workers
promo-worker/ mos2es.org worker (static assets + AEO/SEO/GEO headers)
moses-worker/ enterprise.mos2es.org worker (static assets)
onepager-worker/ One-pager worker (static assets)
mcp-worker/ MCP server worker (computes live from raw data, 27 tools)MCP server
The MCP server exposes 27 tools (22 read + 5 write) over streamable HTTP at https://mcp.mos2es.org/mcp. No authentication required for the public server.
Read tools include: cohort stats, operator profiles, metric distributions, benchmark positions, divergence findings, intervention outcomes, outcome lineage, workflow fit, org topology, and more.
Write tools include: create intervention, assign intervention, record outcome, create eval configuration, create pilot configuration.
The server computes live from raw observation data — no pre-computed results. Every call runs the actual scoring, benchmarking, and diagnostic engines.
Server card
curl -s https://mcp.mos2es.org/.well-known/mcp/server-card.json | python3 -m json.toolReturns the full server card with all 27 tool schemas, transport info, and metadata.
Cloudflare Workers
Four Workers deploy from this repo:
Worker | Domain | What |
| mos2es.org | Promo site + AEO/SEO/GEO headers + agent discoverability (llms.txt, sitemap, OpenAPI, MCP links) |
| enterprise.mos2es.org | Enterprise demo site |
| (workers.dev) | One-pager |
| mcp.mos2es.org | MCP server (27 tools, live computation) |
Deploy
npm install -g wrangler
cd _workers/promo-worker && wrangler deploy
cd _workers/moses-worker && wrangler deploy
cd _workers/onepager-worker && wrangler deploy
cd _workers/mcp-worker && wrangler deployMCP worker data sync
The MCP worker computes live from raw data files (observations.js, lineages.js) auto-generated from the platform's demo data. To regenerate after updating demo data:
cd _workers/mcp-worker/src
python3 -c "
import json
with open('../../../_01_platform/demo_data/observations.jsonl') as f:
data = [json.loads(l) for l in f if l.strip()]
with open('observations.js', 'w') as f:
f.write('export default '); json.dump(data, f); f.write(';\n')
with open('../../../_01_platform/demo_data/lineages.jsonl') as f:
data = [json.loads(l) for l in f if l.strip()]
with open('lineages.js', 'w') as f:
f.write('export default '); json.dump(data, f); f.write(';\n')
"Key conventions
Brand: MO§ES™ (use the section sign §)
All outcome claims are ASSOCIATION, never CAUSATION unless backed by a controlled experiment
Composite score is DEVELOPMENTAL, never PERSONNEL — no punitive use, no employee leaderboard
Operator similarity is metric similarity, NOT personality matching
Content-free telemetry — no prompt text, no output bodies, no code content in observations
No prompt-content surveillance — operator performance is observable from token structure alone
Governance-ready — evidence labels (DEVELOPMENTAL, HYPOTHESIS, ASSOCIATION) on every output
Complement, don't replace
MO§ES™ works alongside your existing BI, eval suites, observability tools, and productivity analytics. It measures the systems intelligence layer they can't see. Not a replacement — the missing piece.
Five pillars
# | Pillar | What |
1 | Systems Intelligence | MO§ES™ sees the human-AI operating system the way BI sees the business. Operator performance, workflow fit, tool selection, capability distribution, intervention outcomes — all measured from structure, not content. |
2 | Standard Operational Performative Metrics | 5 canonical metrics. 15 eval families. 13 benchmark classes. 4 measurement levels. An open, documented spec for measuring how humans operate AI. The reference implementation is MO§ES™. |
3 | Bespoke Enterprise Evals | Your company should not inherit someone else's definition of AI proficiency. Evals built around your workflows, roles, models, and performance questions. |
4 | Complement, Don't Replace | Works alongside your existing BI, eval suites, observability tools, and productivity analytics. The missing piece, not a replacement. |
5 | Privacy-First / Governance | Content-free token telemetry. No prompt text. No surveillance. DEVELOPMENTAL / HYPOTHESIS / ASSOCIATION evidence labels on every output. Governance-ready out of the box. |
License
PolyForm Noncommercial 1.0.0 — see LICENSE. Personal use, research, and noncommercial use permitted. Commercial use requires a license. Patent pending.
mos2es.org · Book a demo · Run the demo · MCP server
Built by Deric J. McHenry — Ello Cello LLC
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnterprise-grade MCP server with multi-agent system for business AI transformation across finance, healthcare, retail, and other domains. Provides specialized AI agents for data analysis, API execution, business validation, and report generation with real-time monitoring and observability.
- FlicenseNot gradedqualityNot gradedmaintenanceOpen-source AI governance toolkit. MCP servers & CLIs for scanning, auditing, and managing your AI environment
- AlicenseAqualityAmaintenanceDescription Governed agent city-state. Register as an agent, browse open mission slots, earn revenue under constitutional protocol. Every action creates a SHA-256 provenance seed. Powered by MO§ES™.6231MIT
- AlicenseNot gradedqualityDmaintenanceA production-grade MCP server designed for multi-tenant, authenticated, and observable AI agent systems, enabling secure tool execution across heterogeneous data sources.57MIT
Related MCP Connectors
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SunrisesIllNeverSee/Moses_Enterprise_B2BPilot_'
If you have feedback or need assistance with the MCP directory API, please join our Discord server