Skip to content

Manage MCP Servers

You can add, edit, refresh, or delete MCP servers from the MCP page, and inspect the tools exposed by each server.

Add an HTTP MCP Server

  1. Open MCP from the left sidebar.
  2. Click New MCP Server in the upper-right corner.
  3. Fill in the server details:
FieldDescriptionExample
NameThe display name shown in the MCP server list. Use a clear service name.GitHub MCP
IdentifierA unique identifier used inside the workspace. If you change it later, apps or workflows that reference this server may need to be updated.github
Server URLThe HTTP MCP server endpoint. EZChat uses this URL to connect and discover available tools.https://mcp.example.com
  1. Click Save.
  2. After returning to the list, confirm that the server status is Ready and check the number of tools.
  3. If the tools are not updated immediately, open the row menu and click Refresh tools. To update every server, use Refresh all in the upper-right corner.

MCP server list

New MCP server dialog

Update an HTTP MCP Server

  1. Find the server in the MCP server list.
  2. Click the row menu on the right side.
  3. Select Edit.
  4. Update the Name, Identifier, or Server URL.
  5. Click Save.
  6. If the Server URL or available tools have changed, click Refresh tools from the row menu so EZChat can fetch the latest tool list.

MCP server row menu

Note

The Identifier is used by apps and workflows to reference the MCP server. Avoid changing it unless you are sure no existing workflows or apps depend on the old identifier.

Use MCP Inspector

MCP Inspector helps you test whether an HTTP MCP server can connect, list tools, and call a selected tool with JSON arguments. It is useful before adding or updating a server, and when troubleshooting tool schemas or responses.

Connect and List Tools

  1. Click MCP Inspector in the upper-right corner of the MCP page.
  2. Enter the HTTP MCP server endpoint in Server URL.
  3. If the server requires extra headers, enter a JSON object in Headers JSON, for example:
json
{
  "Authorization": "Bearer YOUR_TOKEN"
}
  1. Click Connect & list tools.
  2. After a successful connection, the available tools appear on the left, and the Result area shows the tools/list response.

MCP Inspector initial view

Test a Tool Call

  1. Select a tool from the list in the Inspector.
  2. The middle panel shows the tool name, description, Arguments JSON, and Tool Schema.
  3. Update Arguments JSON according to the Tool Schema.
  4. Click Call tool.
  5. Check the Result panel on the right. If an error appears, verify the Server URL, Headers JSON, Arguments JSON, and server-side permissions.

MCP Inspector with selected tool