MCP System Index (Omni Hub)
December 25, 2025 ยท View on GitHub
This index is the authoritative, investor-ready summary for the local mcp system. It is intentionally minimal and focused for quick handoff and demo runs.
Purpose
- Provide a single-page index for the
mcpsystem used during investor demos. - Document key endpoints, run steps, and the admin controls (Doc Evolution safety toggle).
Quick Start (60s)
- Install:
pip install -r requirements.txt - Initialize DB:
python scripts/init_db.py(or see README.md for manual SQL) - Start gateway:
python api_gateway.py(default port 8000) - Open admin UI:
http://localhost:8000/admin(Infinity-Monitor / Admin Console)
Key Endpoints
/health- Gateway health/predict- Unified predict API/crawl- Unified crawl API/simulate- Simulation/backtest API/admin- Admin Console (UI)/admin/doc/ingest- Ingest a document (admin)/admin/doc/evolve- Evolve a document (admin)/admin/doc/sync- Sync documents (admin)/admin/doc/mode- Get/set Doc Evolution mode (safe/read-only/live)
Admin Notes
- Doc Evolution integration defaults to
safemode to prevent unintended external writes. Use the Admin Console toggle (Settings โ Doc Evolution Controls) to change toread-onlyorlive. - Audit all admin doc operations. Use
REI__System_Audit_Log(ledger) for permanent records.
Why this repo is self-sustaining
- The
mcprepo includes a FastAPI gateway, admin UI, local proxy for landing pages, crawler, and integrations which allow it to run independently of external submodules. - Use
DOC_EV_MODEenvironment variable to control behavior when connecting to external doc systems.
Next Steps (for sync with infinity-xos)
- Run read-only consolidation of
infinity-xossystem_index/docs_index.jsonto collect per-subsystem summaries. - Review the staging summaries, then open a PR on
infinity-xosto merge authoritative changes. - Enable
DOC_EV_MODE=liveonly after audits and human approval.
Generated and managed by the Omni Hub administration tools.