AOCS-OmegaMCP
Integrates with OpenAI's API to power sub-agent LLM calls with configurable GPT models.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AOCS-OmegaMCPanalyze the pros and cons of quantum computing for drug discovery"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AOCS‑Ω FastMCP Server
Apex Omniscient Cognitive System — quality-first multi-agent reasoning framework with fractal verification, adversarial red-teaming, and self-audit pipelines.
This is a deterministic, executable MCP server — not a SKILL.md the model can forget. Every AOCS phase runs as real Python code, called via the Model Context Protocol (MCP) from any compatible client.
Quick Start
# 1. Install dependencies
pip install mcp pydantic anthropic openai
# 2. Connect to OpenCode
opencode mcp add aocs-omega -- "python" "-m" "aocs_mcp"
# 3. Verify
opencode mcp list
# → aocs-omega runningRelated MCP server: PromptSmith
How It Works
When you ask a question in OpenCode/Claude Code, the model calls aocs_analyze which runs the full pipeline:
Phase 0 (Framing) → Phase 1 (Scoring) → Classify (Type 1/2/3)
→ Route & Execute (Specialist → Red Team → ... → Judge)
→ Quality Gates (10 checks)
→ Observer (groupthink detection)
→ Shadow Orchestrator (divergence check)
→ Final ReportEverything runs in real code. The model can't skip or forget steps because it's not reading instructions — it's calling tools.
LLM Calls
Each sub-agent (Specialist, Red Team, Judge, etc.) calls an LLM through the LLM Router:
Host CLI (primary, zero extra cost): shells out to
opencode run/claude --print, using your host's configured models and API keysDirect API (optional): configure API keys in
config/models.local.jsonfor per-role model selection
Per-Role Model Configuration
// config/models.local.json (gitignored)
{
"direct_api": {
"enabled": true,
"anthropic": { "api_key": "sk-...", "default_model": "claude-sonnet-4-6" },
"openai": { "api_key": "sk-...", "default_model": "gpt-4o" }
},
"roles": {
"specialist": { "mode": "direct-api", "direct_api": { "provider": "anthropic", "model": "claude-opus-4-8" } },
"deception-detector": { "mode": "direct-api", "direct_api": { "provider": "openai", "model": "gpt-4o-mini" } }
}
}Tools
Tool | Description | LLM Calls |
| Full pipeline: frame → score → classify → route → execute → verify → report | ~11 |
| Classify problem Type 1/2/3 | 0 (rules) |
| Phase 0 Problem Framing only | 3 |
| Score sub-problems on I/L/U/V | 0 |
| Type 2 Triad: Specialist → RT → Contrarian → DD → Judge | 5 |
| Specialist Builder (Elon+Larson+Polya loop) | 1 |
| Adversarial challenge | 1 |
| Truth-seeker evaluation | 1 |
| Rhetorical manipulation scan | 1 |
| Blind evaluation with confidence score | 1 |
| 10 quality gates | 2 |
| Breakthrough protocols (analogical/reframe/backcast) | 2-3 |
| Volume Swarm (parallel workers) | N+2 |
| Groupthink + overconfidence check | 1 |
| Formal claim verification | 1 |
Cross-Platform
Claude Code
Add to .claude/settings.json:
{
"mcpServers": {
"aocs-omega": {
"command": "python",
"args": ["-m", "aocs_mcp"]
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"aocs-omega": {
"command": "python",
"args": ["-m", "aocs_mcp"]
}
}
}Codex / Cline / Any MCP Client
Same pattern — "python" "-m" "aocs_mcp" as the command.
Project Structure
aocs-mcp-server/
├── aocs_mcp/
│ ├── server.py # FastMCP + tool registrations
│ ├── router.py # LLM Router (host CLI / direct API)
│ ├── config.py # Config loader
│ ├── phase0/ # Problem Framing (6 sub-phases)
│ ├── phase1/ # Scoring
│ ├── routing/ # Type 1/2/3 pipes + swarm
│ ├── agents/ # Specialist, Red Team, Contrarian, etc.
│ ├── quality/ # 10 quality gates, observer, shadow
│ ├── memory/ # Blackboard, graveyard, auditor
│ ├── breakthrough/ # Analogical, reframe, backcast
│ ├── learning/ # Flywheel
│ └── pipeline/ # Orchestrator + models
├── config/
│ ├── models.default.json # Default routing (checked in)
│ └── models.local.json # Local overrides (gitignored)
├── pyproject.toml
└── README.mdNew Laptop Setup
# 3 commands
git clone https://github.com/your-org/aocs-mcp-server.git
pip install mcp pydantic
opencode mcp add aocs-omega -- "python" "-m" "aocs_mcp"No API keys needed — uses your host's LLM via CLI subprocess.
Architecture
Built with FastMCP (Anthropic's official MCP Python SDK). Deterministic pipeline enforced in code. The model cannot skip or forget any phase because each phase is a real function call, not text instructions.
MCP protocol means it works with any client: OpenCode, Claude Code, Cursor, Codex, Cline, or any MCP-compatible tool.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/budhasantosh010/AOCS-OmegaMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server