Quick Start
Get up and running with Hydra in 5 minutes.
Prerequisites
- An account at hydra.opiusai.com (opens in a new tab)
- One of the supported IDEs:
- Claude Code (recommended) -
npm install -g @anthropic-ai/claude-code - Cursor - Download from cursor.sh (opens in a new tab)
- Codex CLI -
npm install -g @openai/codex
- Claude Code (recommended) -
Need help setting up? See our Prerequisites Guide for detailed installation instructions.
For a more detailed walkthrough, see our 15-Minute Tutorial.
Create Your Account
- Go to hydra.opiusai.com (opens in a new tab)
- Click "Get Started"
- Sign up with GitHub or email
- Verify your email if required
Create Your First Workflow
- From your Dashboard, click "New Workflow"
- Choose "Start from scratch" or select a template
- Give it a name: "My First Workflow"
Enter this simple code review workflow:
{
"$schema": "https://hydra.opiusai.com/schemas/workflow/v1.0.json",
"manifest_version": "1.0",
"name": "Code Review",
"intent": "Review code changes and provide feedback",
"steps": [
{
"id": "analyze",
"name": "Analyze changes",
"action": "analyze_code",
"parameters": {
"focus": "code quality, security, performance"
}
},
{
"id": "feedback",
"name": "Provide feedback",
"action": "generate_code",
"depends_on": ["analyze"],
"parameters": {
"focus": "actionable suggestions"
}
}
]
}- Click "Save"
Connect Your IDE
First, deploy your workflow:
- Click Deploy on your workflow
- Select your target IDE adapters
- Copy the MCP endpoint URL from the deployment details
Claude Code
Create or edit ~/.claude/settings.json:
{
"mcpServers": {
"hydra": {
"url": "YOUR_MCP_ENDPOINT_URL"
}
}
}Replace YOUR_MCP_ENDPOINT_URL with the MCP endpoint from your deployment (Dashboard → Deployments).
Restart Claude Code after saving.
Run Your Workflow
In Claude Code, type:
Run my Code Review workflow on the current fileClaude will execute each step and provide structured feedback.
What Just Happened?
- Hydra served your workflow via MCP to your IDE
- Your IDE's AI parsed the manifest and understood the steps
- Each step executed in order, with dependencies respected
- Results were returned in your IDE's native format
Common First Steps
Browse the Marketplace
Instead of creating from scratch, explore community workflows:
- Go to Marketplace
- Find a workflow you like
- Click Fork to create your own copy
- Customize as needed
Modify Your Workflow
- Go to My Workflows in Dashboard
- Click on your workflow
- Use the Visual Builder to:
- Add new steps
- Modify parameters
- Reorder dependencies
- Save your changes
Share Your Workflow
Ready to share?
- Open your workflow
- Click Publish
- Add:
- Description
- Category
- Tags
- Click Publish to Marketplace
Troubleshooting Quick Start Issues
"Hydra not found" in IDE
- Verify your MCP URL is correct
- Restart your IDE completely
- Check Troubleshooting Guide
Workflow doesn't execute
- Ensure workflow is saved (not just drafted)
- Check your IDE has MCP enabled
- Try listing workflows first: "List my Hydra workflows"
Auth errors
- Sign out and back in to Hydra
- Regenerate your API key if using Codex
- Clear browser cookies and retry