Model Context Protocol (MCP) is an open standard that lets AI agents connect to external tools and data sources. By adding an MCP server to Studio AI, you give agents access to new capabilities — querying a database, reading from a document store, calling an API, or integrating with other enterprise systems — without modifying the agents themselves.
An MCP server exposes a set of tools that agents can call during a conversation. When an MCP server is connected, its tools appear alongside the built-in agent tools and can be invoked automatically when the agent determines they are relevant.
Examples of what MCP servers can provide:
MCP servers are managed in the MCP Servers tab of the AI Configuration panel. Open AI Configuration via the icon in the AI Chat panel bar (or View > AI Configuration), then select the MCP Servers tab.
The tab shows a list of all configured servers. Each entry displays the server name, type, connection details, and status.
Click Add MCP Server. Fill in the following fields:
Click Save to connect the server. Studio AI immediately attempts to connect and lists the tools it discovers.
Click the Edit button next to any server in the list to modify its configuration. Changes take effect on the next connection attempt.
Click Remove next to a server to disconnect it and remove it from the list. The tools it provided are immediately unavailable to agents.
A stdio server runs as a child process on the same machine as the Studio. Studio AI launches the process using the command you specify and communicates with it over standard input/output.
This type is suitable for servers that are installed locally — for example, an MCP server distributed as an npm package or a Python script.
Example configuration:
stdionode/home/user/.mcp-servers/my-server/index.jsAn HTTP/SSE server runs as a standalone service (typically on your infrastructure or a cloud endpoint) and communicates over HTTP using Server-Sent Events. Studio AI connects to the server by URL.
This type is suitable for shared, centrally managed MCP servers — for example, a company-wide tool gateway that multiple developers connect to.
Example configuration:
HTTP/SSEhttps://mcp.internal.example.com/studio-toolsMCP servers can execute code, access data, and call external services on behalf of agents. When adding a server, consider:
Model Context Protocol (MCP) is an open standard that lets AI agents connect to external tools and data sources. By adding an MCP server to Studio AI, you give agents access to new capabilities — querying a database, reading from a document store, calling an API, or integrating with other enterprise systems — without modifying the agents themselves.
An MCP server exposes a set of tools that agents can call during a conversation. When an MCP server is connected, its tools appear alongside the built-in agent tools and can be invoked automatically when the agent determines they are relevant.
Examples of what MCP servers can provide:
MCP servers are managed in the MCP Servers tab of the AI Configuration panel. Open AI Configuration via the icon in the AI Chat panel bar (or View > AI Configuration), then select the MCP Servers tab.
The tab shows a list of all configured servers. Each entry displays the server name, type, connection details, and status.
Click Add MCP Server. Fill in the following fields:
Click Save to connect the server. Studio AI immediately attempts to connect and lists the tools it discovers.
Click the Edit button next to any server in the list to modify its configuration. Changes take effect on the next connection attempt.
Click Remove next to a server to disconnect it and remove it from the list. The tools it provided are immediately unavailable to agents.
A stdio server runs as a child process on the same machine as the Studio. Studio AI launches the process using the command you specify and communicates with it over standard input/output.
This type is suitable for servers that are installed locally — for example, an MCP server distributed as an npm package or a Python script.
Example configuration:
stdionode/home/user/.mcp-servers/my-server/index.jsAn HTTP/SSE server runs as a standalone service (typically on your infrastructure or a cloud endpoint) and communicates over HTTP using Server-Sent Events. Studio AI connects to the server by URL.
This type is suitable for shared, centrally managed MCP servers — for example, a company-wide tool gateway that multiple developers connect to.
Example configuration:
HTTP/SSEhttps://mcp.internal.example.com/studio-toolsMCP servers can execute code, access data, and call external services on behalf of agents. When adding a server, consider: