> ## Documentation Index
> Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP servers

export const McpIcon = () => <svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor" className="inline-block align-text-bottom" aria-label="MCP">
    <path d="M13.85 0a4.16 4.16 0 0 0-2.95 1.217L1.456 10.66a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l9.442-9.442a2.49 2.49 0 0 1 3.541 0 2.49 2.49 0 0 1 0 3.541L8.59 12.97l-.1.1a.835.835 0 0 0 0 1.18.835.835 0 0 0 1.18 0l.1-.098 7.03-7.034a2.49 2.49 0 0 1 3.542 0l.049.05a2.49 2.49 0 0 1 0 3.54l-8.54 8.54a1.96 1.96 0 0 0 0 2.755l1.753 1.753a.835.835 0 0 0 1.18 0 .835.835 0 0 0 0-1.18l-1.753-1.753a.266.266 0 0 1 0-.394l8.54-8.54a4.185 4.185 0 0 0 0-5.9l-.05-.05a4.16 4.16 0 0 0-2.95-1.218c-.2 0-.401.02-.6.048a4.17 4.17 0 0 0-1.17-3.552A4.16 4.16 0 0 0 13.85 0m0 3.333a.84.84 0 0 0-.59.245L6.275 10.56a4.186 4.186 0 0 0 0 5.902 4.186 4.186 0 0 0 5.902 0L19.16 9.48a.835.835 0 0 0 0-1.18.835.835 0 0 0-1.18 0l-6.985 6.984a2.49 2.49 0 0 1-3.54 0 2.49 2.49 0 0 1 0-3.54l6.983-6.985a.835.835 0 0 0 0-1.18.84.84 0 0 0-.59-.245" />
  </svg>;

MCP (Model Context Protocol) servers connect your agents to external services, databases, and APIs. Agent Studio maintains a global registry of MCP servers that any agent can use. Register a server once, then enable it for individual agents from their configuration page.

## Viewing registered MCP servers

To view your registered MCP servers and their available tools:

1. Select <Icon icon="puzzle-piece-simple" iconType="light" /> **Add-ons** from the left-hand navigation, then click <McpIcon /> **MCP**.
2. Select an MCP server to expand it.
3. Click <Icon icon="wrench" iconType="light" /> **List tools** to discover the server's available tools.

<Frame>
  <img src="https://mintcdn.com/anaconda-29683c67/gLbMdeIS1UWlIs9N/images/agent_studio_addons_mcp.png?fit=max&auto=format&n=gLbMdeIS1UWlIs9N&q=85&s=a8655d4780c3bdf72566ed52d35d1a69" alt="Add-ons MCP page showing registered servers with status indicators and plugin labels" width="1922" height="954" data-path="images/agent_studio_addons_mcp.png" />
</Frame>

<Tip>
  To show MCP servers registered by plugins, click the <Icon icon="filter" iconType="light" /> **Filter** dropdown beside the search box at the top of the page and select **Show plugin items**.
</Tip>

## Registering an MCP server

To register an MCP server:

1. Select <Icon icon="puzzle-piece-simple" iconType="light" /> **Add-ons** from the left-hand navigation, then click <McpIcon /> **MCP**.
2. Click <Icon icon="plus" iconType="light" /> **Add**.
3. Enter a name for the server.
4. Select a transport method and configure the connection:

   <Tabs>
     <Tab title="Standard I/O (stdio)">
       Use stdio for MCP servers that run locally as a process on your machine.

       1. Enter the **Command** to start the server (for example, `npx` or `uvx`).
       2. Add any required **Arguments** for the command. Click <Icon icon="plus" iconType="light" /> **Add argument** to add additional arguments.
       3. (Optional) Add **Environment variables** as key-value pairs. Click <Icon icon="plus" iconType="light" /> **Add environment variable** to add additional variables.
       4. (Optional) Enter a **Working Directory** for the server process.
       5. Click **Add to Catalog**.
     </Tab>

     <Tab title="Server-Sent Events (SSE)">
       Use SSE for MCP servers that are hosted remotely or already running on your network.

       1. Enter the server's **URL** (for example, `http://localhost:3000/sse`).
       2. Click **Add to Catalog**.
     </Tab>
   </Tabs>

## Editing and deleting MCP servers

1. Select <Icon icon="puzzle-piece-simple" iconType="light" /> **Add-ons** from the left-hand navigation, then click <McpIcon /> **MCP**.
2. Click <Icon icon="ellipsis" iconType="light" /> on the server's row.
3. Select <Icon icon="pencil" iconType="light" /> **Edit** to modify the server's configuration, or select <Icon icon="trash" iconType="light" /> **Delete** to remove it.

<Note>
  Deleting an MCP server removes it from all agents that use it. Those agents will no longer have access to the server's tools.

  ***

  Servers registered by plugins cannot be edited or deleted from this page. Manage them through the plugin's own configuration.
</Note>

## Enabling an MCP server for an agent

Once a server is registered in the global catalog, you can enable it for individual agents from the agent's configuration page. See [MCP](/tools/anaconda-desktop/agent-studio/agents#mcp) for instructions.
