Skip to main content
GET
/
api
/
v1
/
mcp
/
servers
List MCP servers
curl --request GET \
  --url http://localhost:3000/api/v1/mcp/servers \
  --cookie nut-session=
{
  "success": true,
  "data": {
    "servers": [
      {
        "name": "<string>",
        "command": "<string>",
        "args": [
          "<string>"
        ],
        "env": {},
        "status": "running"
      }
    ]
  }
}

Authorizations

nut-session
string
cookie
required

Session cookie authentication

Response

List of MCP servers

success
boolean
required
data
object