Overview
TrueFoundry Agent Hub is a centralized platform for building, registering, discovering, and orchestrating AI agents within an organization. This will support building complex agents as well as registering and using pre-existing agents.Capabilities
Agent Hub provides the following capabilities:- Agent development using models and MCP servers Build agents using foundation models and MCP servers integrated with TrueFoundry, and publish them as first-class agents within the platform.
- Agent apps for non-technical users Expose agents as Agent Apps for use by non-developer or business users, enabling organization-wide access to AI-powered workflows.
- Multi-agent workflows with sub-agents Create complex agents by composing and orchestrating sub-agents to model sophisticated multi-step or collaborative workflows.
- Bring your own A2A agents Integrate externally built A2A compatible agents and use them as sub-agents.
- Agent sharing and orchestration Share agents across teams and orchestrate them into reusable workflows to improve collaboration and reduce duplication.
Upcoming Features
The following enhancements are planned for upcoming releases:- Backend context management APIs APIs to support multi-turn conversations by passing previous response IDs, simplifying state management for agent integrations.
- Automatic summarization and smart context handling Intelligent summarization of long conversations to manage context length efficiently while preserving conversational quality.
- Large tool-call handling Automatic chunking and management of oversized tool-call responses to ensure reliable and efficient LLM processing.
- Skills library A reusable skills framework that allows teams to upload and manage shared skills, which agents can invoke on demand.
- Task management integration Built-in task management at the gateway level to support long-running and asynchronous agent tasks.
Building and Publishing Agents
This guide describes how to build and publish agents on TrueFoundry using Agent Hub. Every agent on Agent Hub is backed by a TrueFoundry Prompt. To publish an agent:- Create and experiment with a prompt in the TrueFoundry Playground.
- Publish the prompt as an agent on Agent Hub.
Building an Agent
To build an agent, start with the TrueFoundry Playground:- Select a model
- Add system prompt and user prompt
- Select MCP Servers (one or more from the list of MCP Servers available on TrueFoundry)
- Run the prompt to get responses

TrueFoundry Playground showing model selection, MCP servers, system prompt, and user prompt options
Publishing an Agent
Once the prompt is ready, publish it on Agent Hub from either of the following locations:- On the Agent Hub page, click the “New Agent” button and select the prompt to publish.

Agent Hub page showing the 'New Agent' button and prompt selection interface
- On the prompts page, click the “Publish” button.

Prompts page showing the 'Publish' button to publish a prompt as an agent
- Name: A unique name for the agent (unique within a company). Every agent is identified by its name.
- Description: A description for the agent.
- Source: Select the prompt from the list of available prompts.
- Collaborators: Add collaborators to the agent. “Manager” role can view and make changes to the agent. “Viewer” access can be granted to end-consumers of this agent.
- Sample Inputs: Provide sample inputs for the agent. These are displayed to end-consumers on the “Agents Use” page.

Agent publish form showing fields for name, description, source prompt, collaborators, and sample inputs
Using via UI
Once published, all registered agents are visible on the “Agents Hub” page. Click the “Try Now” button to interact with an agent. Try Now Button on Agent Hub
Agent Hub page showing the 'Try Now' button for interacting with published agents

Standalone agent interaction page where users can chat with agents they have access to
Integrate with Code
All changes are API-driven. The API contract is currently under active development and will be finalized and documented in the coming weeks.Using Sub-Agents (Beta)
Enable sub-agents in TrueFoundry by selecting the “sub-agents” option in the playground. Sub-Agents Option in Playground
Playground interface showing the sub-agents option to enable multi-agent workflows