30 May 2026

Introducing the Agiler MCP Server

The Agiler MCP server connects AI agents (Claude Code, Claude Desktop, Cursor, and anything else that speaks the Model Context Protocol) directly to your Agiler account. It exposes the same surface as the REST API and CLI as MCP tools, so an agent can list projects, read and write files, run SQL, manage domains and backups, and tail logs from inside a conversation.

It is a hosted server, so there is nothing to install. Point your client at the endpoint with an API key:

https://mcp.agiler.io/v1

For Claude Code, add it to ~/.claude/mcp.json:

{
  "mcpServers": {
    "agiler": {
      "type": "http",
      "url": "https://mcp.agiler.io/v1",
      "headers": { "Authorization": "Bearer ak_..." }
    }
  }
}

Authentication uses the same scoped API keys as the REST API and CLI, and a key’s scopes decide which tools an agent can see: a read-only key exposes only read-only tools. Generate one in your dashboard under Profile → API Keys.

  • MCP reference: /docs/mcp/, with setup for Claude Desktop and Cursor, the full tool list, and response shapes.
  • The protocol: modelcontextprotocol.io, if you are new to MCP.