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
- After signing in, click "New Project"
- Enter a project name and optional description
- Choose a project key (e.g., "MYAPP")
- Click "Create Project"
Step 3: Generate an API Key
- Go to Settings → API Keys
- Click "Create API Key"
- Name it (e.g., "Claude Code")
- Select permissions (recommend: Read + Write)
- 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?
- Learn core concepts - Understand the data model
- MCP Tools Reference - All 27+ available tools
- Knowledge Base - Set up persistent AI memory