> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shinzo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List MCP Servers

> Retrieve all registered MCP servers.

## Authentication

Requires JWT token or Platform API key via `Authorization: Bearer <token>` header.

<ParamField query="page" type="number" default="1">Page number (min: 1)</ParamField>
<ParamField query="limit" type="number" default="20">Results per page (1-100)</ParamField>
<ParamField query="status" type="string">Filter by status: `active`, `inactive`, `error`, or `deploying`</ParamField>

## Example Request

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

## Example Response

```json theme={null}
{
  "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

| Code  | Description                                      |
| ----- | ------------------------------------------------ |
| `200` | Success                                          |
| `401` | Unauthorized - invalid or missing authentication |
