Publishing Agents
A new agent starts as a draft: visible only to you and admin-tier roles. Publishing makes it visible and usable for everyone. For the full visibility model and permission matrices, see identity and permissions.
Publish or unpublish in the UI
Section titled “Publish or unpublish in the UI”-
Open your agent in Agent Studio.
-
Locate the publish controls in the top-right corner of the agent page.
- Draft agents show a Publish button.
- Published agents show a Published badge and an Unpublish button.


-
Click the button to toggle the published status.
- Publish makes the agent visible to all users.
- Unpublish returns it to draft, hiding it from non-admin users.
Finding draft agents
Section titled “Finding draft agents”Your draft agents appear in the Draft tab when browsing agents. Other users’ drafts are not visible to you unless you are a Server Admin or Catalog Admin.

Publishing via the API (alternative)
Section titled “Publishing via the API (alternative)”You can also change an agent’s published status programmatically with a PATCH request:
curl -X PATCH 'https://<your-tenant>.alationcloud.com/ai/api/v1/config/agent/<agent-id>' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer <your-oauth-token>' \ -d '{"published_status": "published"}'curl -X PATCH 'https://<your-tenant>.alationcloud.com/ai/api/v1/config/agent/<agent-id>' \ -H 'Content-Type: application/json' \ -H 'x-csrftoken: <your-csrf-token>' \ -H 'Cookie: sessionid=<your-session-id>; csrftoken=<your-csrf-token>' \ -d '{"published_status": "published"}'To unpublish, send {"published_status": "draft"}.
The agent ID is in the URL when viewing the agent (/app/studio/agents/a/<agent-id>), or list your agents with GET /ai/api/v1/config/agent.
Who can change published status: standard roles and above, for their own agents. Only Server Admin can change other users’ agents. Viewer and Explorer roles cannot publish (they cannot edit agents at all).
Related
Section titled “Related”- Identity and permissions — the visibility model and full permission matrices.
- Publish an agent to MCP — expose the published agent as a tool for MCP clients and other agents.