# Install Omnara
pip install omnara
# Start a Claude Code session that's synced between terminal, web, and mobile
omnara
That's it! Create an account when prompted, then return to your terminal to interact with Claude Code. You can now see and interact with your Claude Code session from the web dashboard or the mobile app.
Omnara transforms your AI agents (Claude Code, n8n, and more) from silent workers into communicative teammates. Get real-time visibility into what your agents are doing, and respond to their questions instantly from a single dashboard on web and mobile.
The primary way to use Claude Code with Omnara
Install Omnara using your preferred package manager:
# Using pip
pip install omnara
# Using uv
uv tool install omnara
# Using pipx
pipx install omnara
Omnara offers three different modes depending on your workflow:
omnara
Starts Claude Code with the standard CLI interface, fully synced across terminal, web dashboard, and mobile app. You interact with Claude Code in your terminal as usual, while everything is mirrored to the Omnara dashboard.
omnara headless
Runs Claude Code in the background without the terminal UI. Perfect for when you want to interact with Claude Code exclusively through the Omnara web dashboard or mobile app.
omnara serve
Exposes an endpoint that allows you to launch Claude Code instances remotely from the Omnara dashboard. Ideal for triggering AI agents from your phone or another device.
Keep Omnara up-to-date with the latest features:
# Using pip
pip install omnara --upgrade
# Using uv
uv tool upgrade omnara
# Using pipx
pipx upgrade omnara
Add human-in-the-loop capabilities to your n8n workflows
The Omnara n8n integration provides a specialized "Human in the Loop" node that enables real-time human-AI collaboration within your n8n workflows. Perfect for approval workflows, agent conversations, and guided automation.
For detailed installation and configuration instructions, see the n8n-nodes-omnara package on npm.
Run Claude Code in GitHub Actions with Omnara monitoring
The Omnara GitHub Actions integration allows you to trigger Claude Code to run in your GitHub Actions workflows via repository dispatch events, while monitoring and interacting with it through the Omnara dashboard.
- Remote Launch: Start GitHub Actions from your phone or web dashboard
- Automatic PR Creation: Claude creates branches, commits changes, and opens PRs
- Real-time Monitoring: Track progress and provide guidance through Omnara
For complete setup instructions including GitHub workflow configuration, see the GitHub Actions integration guide.
For custom MCP setups, you can configure manually:
{
"mcpServers": {
"omnara": {
"command": "pipx",
"args": ["run", "--no-cache", "omnara", "mcp", "--api-key", "YOUR_API_KEY"]
}
}
}
from omnara import OmnaraClient
import uuid
client = OmnaraClient(api_key="your-api-key")
instance_id = str(uuid.uuid4())
# Log progress and check for user feedback
response = client.send_message(
agent_type="claude-code",
content="Analyzing codebase structure",
agent_instance_id=instance_id,
requires_user_input=False
)
# Ask for user input when needed
answer = client.send_message(
content="Should I refactor this legacy module?",
agent_instance_id=instance_id,
requires_user_input=True
)
curl -X POST https://api.omnara.com/api/v1/messages/agent \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"content": "Starting deployment process", "agent_type": "claude-code", "requires_user_input": false}'
Omnara provides a unified platform for monitoring and controlling your AI agents:
graph TB
subgraph "Your AI Agents"
A[🤖 AI Agents<br/>Claude Code, Cursor, etc.]
end
subgraph "Omnara Platform"
API[🌐 API Server]
DB[(📊 PostgreSQL)]
NOTIFY[🔔 Notification Service<br/>Push/Email/SMS]
end
subgraph "Your Devices"
M[📱 Mobile App]
W[💻 Web Dashboard]
end
A -->|Send updates| API
API -->|Store data| DB
API -->|Trigger notifications| NOTIFY
NOTIFY -->|Alert users| M
DB -->|Real-time sync| M
DB -->|Real-time sync| W
M -->|User responses| API
W -->|User responses| API
API -->|Deliver feedback| A
style A fill:#e3f2fd,stroke:#1976d2,stroke-width:3px,color:#000
style API fill:#c8e6c9,stroke:#388e3c,stroke-width:2px,color:#000
style DB fill:#ffccbc,stroke:#d84315,stroke-width:2px,color:#000
style NOTIFY fill:#fff59d,stroke:#f57f17,stroke-width:2px,color:#000
style M fill:#f8bbd0,stroke:#c2185b,stroke-width:3px,color:#000
style W fill:#f8bbd0,stroke:#c2185b,stroke-width:3px,color:#000
🛠️ Development Setup
Prerequisites: Docker, Python 3.10+, Node.js
Quick Start:
git clone https://github.com/omnara-ai/omnara
cd omnara
cp .env.example .env
python scripts/generate_jwt_keys.py
./dev-start.sh # Starts everything automatically
Stop services: ./dev-stop.sh
For detailed setup instructions, manual configuration, and contribution guidelines, see our Contributing Guide.
We love contributions! Check out our Contributing Guide to get started.
make lint # Run code quality checks
make format # Auto-format code
make test # Run test suite
./dev-start.sh # Start development servers
Plan | Price | Features |
---|---|---|
Free | $0/mo | 10 agents/month, Core features |
Pro | $9/mo | Unlimited agents, Priority support |
Enterprise | Contact Us | Teams, SSO, Custom integrations |
- 💬 GitHub Discussions
- 🐛 Report Issues
- 📧 Email Support
- 📖 Documentation (coming soon)
Omnara is open source software licensed under the Apache 2.0 License.