Docs Cloud AI Agents Remote MCP Admin Guide Manage Servers Manage Remote MCP Servers Page options Copy as Markdown Copied! View as plain text Ask AI about this topic Add MCP server to VS Code This guide shows you how to manage the lifecycle of MCP servers, including editing configurations, pausing servers to save costs, and permanent deletion. Prerequisites You must have an existing MCP server. If you do not have one, see Remote MCP Server Quickstart. Edit an MCP server You can update the configuration, resources, or metadata of an MCP server at any time. Cloud UI Data Plane API In the Redpanda Cloud Console, navigate to Remote MCP. Find the MCP server you want to edit and click its name. Click Edit configuration. Make your changes. Click Save to apply changes. Editing a running MCP server may cause a brief interruption. Review changes before deploying to production. Authenticate and get the base URL for the Data Plane API. Make a request to GET /v1/redpanda-connect/mcp-servers/{mcp_server_id} to retrieve the current configuration. Make a request to PATCH /v1/redpanda-connect/mcp-servers/{mcp_server_id} to update the configuration: curl -X PATCH "https://<dataplane-api-url>/v1/redpanda-connect/mcp-servers/<mcp-server-id>?update_mask=display_name,description" \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "mcp_server": { "display_name": "updated-name", "description": "Updated description" } }' Stop an MCP server Stopping a server pauses all tool execution and releases compute resources, but preserves configuration and state. This is useful for temporarily disabling a server to save costs while retaining the ability to restart it later. Cloud UI Data Plane API In the Redpanda Cloud Console, navigate to Remote MCP. Find the server you want to stop. Click the three dots and select Stop. Confirm the action. Authenticate and get the base URL for the Data Plane API. Make a request to POST /v1/redpanda-connect/mcp-servers/{mcp_server_id}:stop: curl -X POST "https://<dataplane-api-url>/v1/redpanda-connect/mcp-servers/<mcp-server-id>:stop" \ -H "Authorization: Bearer <token>" While stopped, the server does not respond to MCP requests. Start it again to restore service. Start a stopped MCP server Resume a stopped server to restore its functionality. Cloud UI Data Plane API In the Redpanda Cloud Console, navigate to Remote MCP. Find the stopped server. Click the three dots and select Start. Wait for the status to show Running before reconnecting clients. Authenticate and get the base URL for the Data Plane API. Make a request to POST /v1/redpanda-connect/mcp-servers/{mcp_server_id}:start: curl -X POST "https://<dataplane-api-url>/v1/redpanda-connect/mcp-servers/<mcp-server-id>:start" \ -H "Authorization: Bearer <token>" Wait for the status to show Running before reconnecting clients. Delete an MCP server Deleting a server is permanent and cannot be undone. All configuration, tools, and associated resources are removed. Cloud UI Data Plane API In the Redpanda Cloud Console, navigate to Remote MCP. Find the server you want to delete. Click the three dots and select Delete. Confirm the deletion when prompted. Authenticate and get the base URL for the Data Plane API. Make a request to DELETE /v1/redpanda-connect/mcp-servers/{mcp_server_id}: curl -X DELETE "https://<dataplane-api-url>/v1/redpanda-connect/mcp-servers/<mcp-server-id>" \ -H "Authorization: Bearer <token>" Deletion is immediate and permanent. Make sure you have backed up any important configuration before deleting an MCP server. Next steps Scale MCP server resources to optimize performance and costs. Monitor MCP server activity using OpenTelemetry traces. Build custom tools for your specific use cases. Back to top × Simple online edits For simple changes, such as fixing a typo, you can edit the content directly on GitHub. Edit on GitHub Or, open an issue to let us know about something that you want us to change. Open an issue Contribution guide For extensive content updates, or if you prefer to work locally, read our contribution guide . Was this helpful? thumb_up thumb_down group Ask in the community mail Share your feedback group_add Make a contribution 🎉 Thanks for your feedback! Admin Guide Scale Resources