Agent Toolkit
GET /api/orgs/{org_id}/agent-toolkit
Section titled “GET /api/orgs/{org_id}/agent-toolkit”Get Agent Toolkit
Return the complete toolkit inventory for an org.
Combines agents, prompt templates (which may carry an extraction schema), custom tools, connected (MCP/system/native-integration) tools, skills, and processes in a single response.
When agent_slug is provided the agent must belong to org_id
(404 otherwise). connected_tools is then filtered to only those tools
whose name appears in the agent’s allowed_tools. If allowed_tools
is ["*"], the full list is returned.
All other lists are always unfiltered.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| agent_slug | query | string | no | When set, filter connected_tools to this agent’s allowed_tools. |
| org_id | path | string (uuid) | yes |
Responses
| Status | Description | Body |
|---|---|---|
| 200 | Successful Response | AgentToolkitResponse |
| 422 | Validation Error | HTTPValidationError |