Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 732 Bytes

File metadata and controls

31 lines (23 loc) · 732 Bytes

Agents — integration quickstart

REST (scoped)

GET /api/projects/{projectId}/agents
Authorization: Bearer …
GET /api/users/me/agents
Authorization: Bearer …

Exact shapes are in OpenAPI (OPENAPI.md).

MCP

Use agents.run, agents.list, agents.get via your MCP client (POST /mcp / agentstack.execute). Required caps are listed per row in MCP_CAPABILITY_MATRIX.md.

{
  "tool": "agentstack.execute",
  "arguments": {
    "action": "agents.run",
    "payload": { "agent_uuid": "", "input": {} }
  }
}

(Exact envelope matches your SDK version — prefer @agentstack/sdk typed helpers when available.)