agent-management MCP server.
Overview
The agent management tools let you build applications that:- Create and configure agents with custom instructions and tool access
- Have conversations with agents across multiple messages
- Manage chat sessions — list, create, and reset conversations
- Retrieve artifacts — list files created by agents during code execution
- Create an agent with
agent_create(or use an existing one viaagent_list) - Invoke the agent with
agent_invoke— this starts a conversation and returns achatId - Continue the conversation by calling
agent_invokeagain with the samechatId - List artifacts created during the conversation with
chat_list_artifacts
Authentication
All calls require a runtime token. See Authentication for how to exchange your API key.Quick Start
Create an agent
Start a conversation
Continue the conversation
Pass thechatId from the previous response to continue with message history:
Available Tools
| Tool | Description |
|---|---|
agent_create | Create a new agent with instructions and tool access |
agent_list | List all accessible agents |
agent_read | Get full agent configuration and metadata |
agent_update | Update agent fields (partial update) |
agent_invoke | Send a message to an agent and get a response |
chat_create | Create a chat session for an agent |
chat_list | List chat sessions, optionally filtered by agent |
chat_reset_conversation | Clear conversation history in a chat |
chat_list_artifacts | List artifacts (files) in a chat |

