Skip to main content
GET
https://api.app.shinzo.ai
/
v1
/
mcp
/
servers
List MCP Servers
curl --request GET \
  --url https://api.app.shinzo.ai/v1/mcp/servers \
  --header 'Authorization: Bearer <token>'

Authentication

Requires JWT token or Platform API key via Authorization: Bearer <token> header.
page
number
default:"1"
Page number (min: 1)
limit
number
default:"20"
Results per page (1-100)
status
string
Filter by status: active, inactive, error, or deploying

Example Request

curl -X GET "https://api.app.shinzo.ai/v1/mcp/servers?limit=10&status=active" \
  -H "Authorization: Bearer <token>"

Example Response

{
  "mcp_servers": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "name": "context7",
      "description": "Context7 documentation server",
      "endpoint_url": "https://mcp.context7.com/sse",
      "transport_type": "http",
      "hosting_mode": "remote",
      "status": "active",
      "health_status": "unknown",
      "last_health_check": null,
      "agent_access_count": 3,
      "created_at": "2026-01-10T08:00:00Z",
      "updated_at": "2026-01-12T09:15:00Z"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "name": "github-mcp",
      "description": "GitHub repository management",
      "endpoint_url": "https://mcp.github.com/sse",
      "transport_type": "http",
      "hosting_mode": "remote",
      "status": "active",
      "health_status": "healthy",
      "last_health_check": "2026-01-15T09:00:00Z",
      "agent_access_count": 1,
      "created_at": "2026-01-08T12:00:00Z",
      "updated_at": "2026-01-08T12:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 7,
    "total_pages": 1
  }
}

Status Codes

CodeDescription
200Success
401Unauthorized - invalid or missing authentication