Skip to content
MCP server

Use aeqi from
any MCP client.

aeqi ships a Model Context Protocol server. Claude Code, Codex, Cursor, and any MCP-aware client get direct access to your TRUST runtime — agents, quests, ideas, events, and the code intelligence graph as first-class tools.

Setup

Get a key pair from your account and your company, then point your MCP client at the aeqi binary.

1. Get keys

Account key: app.aeqi.ai/account → APIak_…. Company secret: app.aeqi.ai/company → API Keyssk_….

2. Add to Claude Code
{
  "mcpServers": {
    "aeqi": {
      "command": "aeqi",
      "args": ["mcp"],
      "env": {
        "AEQI_API_KEY": "ak_...",
        "AEQI_SECRET_KEY": "sk_..."
      }
    }
  }
}
3. Or any generic MCP client
export AEQI_API_KEY=ak_...
export AEQI_SECRET_KEY=sk_...
aeqi mcp

On startup, aeqi mcp authenticates with the platform and connects to your TRUST runtime. Tool calls route directly to your agents.

Tool catalog

Core tools use an action-based pattern: tool(action='…', …). Each tool maps to one of the core TRUST primitives or an adjunct surface.

Primitives
agentsAgent lifecycle (WHO)
eventsTriggers and schedules (WHEN)
questsWork items (WHAT)
ideasKnowledge (HOW)
Adjuncts
notesEphemeral signals and resource locks
codeCode intelligence graph
Discovery
aeqi_projectsProjects with repo paths and prefixes
aeqi_primerProject primer (architecture, rules, build/deploy)
aeqi_promptsRegistered skills and workflows
aeqi_statusLive runtime — workers, budget, costs, pending work
Example
quests(action='create', project='myproject', subject='Fix login bug')
ideas(action='search', project='myproject', query='authentication patterns')
agents(action='list', status='active')
events(action='create', agent='myagent', schedule='0 9 * * *',
       content='Post daily standup summary')

Environment

AEQI_SECRET_KEYYes
AEQI_API_KEYNo
AEQI_PLATFORM_URLNo
Self-hosted

Without the platform, the MCP server connects to the local daemon over a unix socket at ~/.aeqi/rm.sock. No keys required — just have aeqi start running.

Next