Skip to content

Connect Claude Code

Requirements

Setup

Via CLI:

bash
claude mcp add --transport http liza \
  https://api.eu.liza.app/api/mcp \
  --header "Authorization: Bearer YOUR_TOKEN"

Or manually in ~/.claude/settings.json:

json
{
  "mcpServers": {
    "liza": {
      "type": "http",
      "url": "https://api.eu.liza.app/api/mcp",
      "headers": { "Authorization": "Bearer YOUR_TOKEN" }
    }
  }
}

To auto-approve the Liza tools, also add "mcp__liza__*" to permissions.allow and then start a new session.

Examples (natural language)

Show me all open tasks assigned to me.
Mark the task "Prepare release" as done.
Which tasks are overdue?
Analyze the workload distribution in the "Development" team.

Claude Code automatically picks the appropriate tools.

Liza Documentation