Skip to main content

Quick Start Guide

Get Erold set up and connected to your AI assistant in just a few minutes.

Step 1: Create Your Account

Sign up at app.erold.dev. No credit card required for the free tier.

Step 2: Create Your First Project

  1. After signing in, click "New Project"
  2. Enter a project name and optional description
  3. Choose a project key (e.g., "MYAPP")
  4. Click "Create Project"

Step 3: Generate an API Key

  1. Go to Settings → API Keys
  2. Click "Create API Key"
  3. Name it (e.g., "Claude Code")
  4. Select permissions (recommend: Read + Write)
  5. Copy the key - you'll need it next

Important: Save your API key securely. It won't be shown again.

Step 4: Configure MCP (for Claude Code)

Add Erold to your Claude Code configuration:

// ~/.config/claude/claude_desktop_config.json
{
  "mcpServers": {
    "erold": {
      "command": "npx",
      "args": ["-y", "@erold/mcp-server"],
      "env": {
        "EROLD_API_KEY": "your_api_key_here"
      }
    }
  }
}

Restart Claude Code to activate the MCP server.

Step 5: Test the Integration

Try asking Claude:

"Create a task called 'Set up authentication' in my project"

Claude will use the MCP tools to create the task directly in Erold.

Alternative: Use the CLI

If you prefer the command line:

# Install the CLI
npm install -g @erold/cli

# Login with your API key
erold login --key your_api_key_here

# Create a task
erold task create "Set up authentication" --project MYAPP

# List tasks
erold task list

What's Next?