Install
$ agentstack add mcp-officialbrandonsandoval-source-operaxon-os ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Operaxon OS
The open-core operating system for agentic businesses.
[](./packages/runtime/LICENSE) [](https://nodejs.org) [](./Dockerfile)
> The window is now. AI agents are eating software. Operaxon OS is the runtime that runs them.
What is Operaxon OS?
Operaxon OS is an open-core runtime for building, deploying, and governing AI agents at scale.
- Open runtime (
packages/runtime) — MIT licensed. Build on it. Ship with it. - Proprietary intelligence layer (Governor, Meridian, Sentinel, Coordinator) — The governance, memory, security, and multi-agent coordination stack.
Think: Linux is free. Red Hat Enterprise Linux is the business. Operaxon Runtime is free. Operaxon Enterprise is the platform.
Quick Start
# Clone
git clone https://github.com/officialbrandonsandoval-source/operaxon-os
cd operaxon-os
# Install
npm install
# Configure
cp .env.example .env
# Edit .env with your API keys
# Start
npm run dev
Gateway running at:
- HTTP:
http://localhost:3000 - WebSocket:
ws://localhost:3000 - Health:
http://localhost:3000/health
CLI
# Initialize a new agent project
npx operaxon init my-agent
# Start the gateway
npx operaxon start
# Check status
npx operaxon status
Architecture
operaxon-os/
├── packages/
│ ├── runtime/ # MIT — the open core
│ │ ├── gateway/ # HTTP/WebSocket server (Express + ws)
│ │ ├── channels/ # Telegram, Discord, HTTP adapters
│ │ ├── sessions/ # In-memory session management
│ │ ├── cron/ # node-cron scheduler
│ │ └── mcp/ # Model Context Protocol client
│ ├── governor/ # PROPRIETARY — policy enforcement
│ ├── meridian/ # PROPRIETARY — persistent memory
│ ├── sentinel/ # PROPRIETARY — security layer
│ └── coordinator/ # PROPRIETARY — multi-agent orchestration
├── agents/
│ └── templates/ # Ready-to-use agent templates
│ ├── builder.ts # Code generation / construction
│ ├── researcher.ts # Research and synthesis
│ ├── communicator.ts # Multi-channel messaging
│ └── sales.ts # Pipeline and outreach
├── cli/
│ ├── init.ts # `operaxon init`
│ ├── start.ts # `operaxon start`
│ └── status.ts # `operaxon status`
└── docs/
├── ARCHITECTURE.md
├── QUICK_START.md
└── GOVERNANCE.md
Docker
# Build
docker build -t operaxon-os .
# Run
docker run -p 3000:3000 --env-file .env operaxon-os
# Or with docker-compose
docker-compose up
Deployment
Railway
Push to GitHub → connect repo on Railway → auto-deploys on push.
Heroku
heroku create my-operaxon-agent
git push heroku main
Fly.io
fly launch --name my-operaxon-agent
fly deploy
API
Health Check
GET /health
{
"status": "healthy",
"version": "0.1.0",
"uptime": 142,
"timestamp": "2026-03-31T21:37:00.000Z",
"services": { "gateway": "up", "websocket": "up" }
}
Send Message to Agent
POST /agent/message
Content-Type: application/json
{
"content": "Build me a REST API",
"sessionId": "optional-session-id",
"channel": "http"
}
WebSocket
const ws = new WebSocket('ws://localhost:3000');
ws.onmessage = (e) => console.log(JSON.parse(e.data));
ws.send(JSON.stringify({ type: 'message', content: 'Hello agent' }));
Agent Templates
Pick a template and extend it:
import { BuilderAgent } from 'operaxon-os/agents/templates/builder';
import { createGateway } from 'operaxon-os';
const gateway = createGateway();
const agent = new BuilderAgent({ name: 'my-builder' });
await gateway.listen(3000);
Templates: builder, researcher, communicator, sales
License
packages/runtime/— [MIT](./packages/runtime/LICENSE)packages/governor/,packages/meridian/,packages/sentinel/,packages/coordinator/— Proprietary. All rights reserved. Contact team@operaxon.com.
Links
- Website: operaxon.com
- Docs: [docs/ARCHITECTURE.md](./docs/ARCHITECTURE.md)
- Enterprise: team@operaxon.com
Built in public. March 31, 2026.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: officialbrandonsandoval-source
- Source: officialbrandonsandoval-source/operaxon-os
- License: MIT
- Homepage: https://operaxon.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.