v1

latestOpenAPI 3.1.02026-07-171127.9 KB

Update a specific server

Update the details of a specific MCP server

put/api/mcp/servers/{id}

Request body

namestring
urlstring

Example request

{
  "name": "Updated Server Name",
  "url": "http://updated-url.example.com"
}

Response

Server updated successfully

idinteger
namestring
urlstring
created_atstring date-time
last_checkstring date-time
last_check_errorstring nullable

Example response

{
  "id": 1,
  "name": "Test Server",
  "url": "http://mcp-server-example.com",
  "created_at": "2023-04-11T14:30:00Z",
  "last_check": "2023-04-11T14:35:00Z"
}