> ## Documentation Index
> Fetch the complete documentation index at: https://novu-c5de82d9-docs-homepage-redesign.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Managed Agent Overview — Novu Connect

> What managed agents are, how they work with Claude, and when to use a fully managed agent brain with Novu Connect.

<Note>
  Agents are currently in private beta. Please contact us at [support@novu.co](mailto:support@novu.co) to get access.
</Note>

A managed agent lets you connect an AI platform like Claude directly to your Novu agent. The platform handles the reasoning, planning, and tool use. You configure credentials and a system prompt in the Novu dashboard, connect a chat provider like Slack, and the agent is ready to talk to your users. No bridge application or handler code is required.

<img src="https://mintcdn.com/novu-c5de82d9-docs-homepage-redesign/_Er4ZWa6vVDiKb7d/images/agents/managed-agent/flow.png?fit=max&auto=format&n=_Er4ZWa6vVDiKb7d&q=85&s=5b45137ecc36a36e6735cde7f498b60b" alt="Managed agent flow" width="1672" height="941" data-path="images/agents/managed-agent/flow.png" />

## How it works

1. A user sends a message on a connected provider (Slack, Microsoft Teams, email, etc.).
2. Novu receives the message, resolves identity and conversation state, and forwards the full context to the AI platform.
3. The platform processes the message using its built-in tools (bash, file operations, web search, grep, etc.), any MCP servers you enabled, and any custom skills you uploaded.
4. Novu delivers the response back to the same thread on the provider.

You do not write event handlers or deploy a bridge server. The AI platform is your agent logic.

## What you configure

Setting up a managed agent involves five pieces, all configured from the Novu dashboard:

* **Connector**: the AI platform that powers the agent (Claude today, with OpenAI and AWS Bedrock coming soon). You provide API credentials or use Novu demo credentials to start.
* **System prompt**: instructions that tell the agent who it is, how to respond, and what to avoid.
* **Built-in tools**: bash, file read/write/edit, glob, grep, web search, and web fetch are provided by the platform and available out of the box.
* **MCP servers**: external integrations like Linear, GitHub, Slack, and Notion that you enable from the dashboard. Some require end-user OAuth authorization.
* **Custom skills**: SKILL.md instruction files you upload from a GitHub URL or paste inline to teach the agent domain-specific workflows.

For a full breakdown of each component, see [Concepts](/agents/managed-agent/concepts).

## When to use a managed agent

Managed agents are a good fit when you want to get an agent running quickly without writing backend code. The platform handles tool calls, streaming, and chain-of-thought reasoning for you.

If you need full control over the agent logic, want to call your own APIs directly in handlers, or need complex multi-step business flows, use a [custom code agent](/agents/custom-code-agent/quickstart) instead.

## Next steps

<Columns cols={2}>
  <Card icon="zap" href="/agents/managed-agent/quickstart" title="Quickstart">
    Create a managed agent with Claude and connect it to Slack in under 10 minutes.
  </Card>

  <Card icon="brain" href="/agents/managed-agent/concepts" title="Concepts">
    Connectors, built-in tools, MCP servers, skills, and conversation flow in detail.
  </Card>

  <Card icon="link" href="/agents/managed-agent/configure-mcp-servers" title="Configure MCP servers">
    Enable external tools for your managed agent.
  </Card>

  <Card icon="wrench" href="/agents/managed-agent/add-skills" title="Add skills">
    Upload custom skills to teach the agent new workflows.
  </Card>
</Columns>
