---
title: "List MCP Servers"
method: GET
path: "/api/v1/servers"
tags: ["Servers"]
---

# List MCP Servers

`GET /api/v1/servers`

Retrieve paginated list of MCP servers with cursor-based pagination

## Query parameters

- `limit` integer — Max servers per page (max: 100, default: 12)
- `cursor` string — Pagination cursor from previous response
- `sort` string — Sort by 'displayName' or 'updatedAt' (default)
- `search` string — Filter by name or description

## Response `200`

Successful response with list of servers

- ServerListResponse
  - `servers` Server[], required — List of servers (without packages/remotes)
    - `scope` string, required
    - `packageName` string, required
    - `displayName` string, required
    - `description` string, required
    - `repository` Repository, nullable
      - `url` string, uri, required
      - `source` string, required
    - `iconUrl` string, uri
    - `detailedDescription` string
    - `version` string
    - `author` string
    - `category` string
    - `tags` string[]
    - `createdAt` string, date-time
    - `updatedAt` string, date-time, required
    - `developerId` string
    - `source` 'gateway' | 'api' | 'seed'
    - `id` string, required
  - `next` string — Cursor for next page. Undefined when no more results.
  - `totalCount` number, required — Total number of servers

## Other responses

- `500` — Internal server error

## Changes

- **2026-01-21** `ba253fbf08a7` — 1 breaking, 1 warning, 2 info
  - the response property `servers/items/version` became optional for the status `200`
  - removed the optional property `servers/items/documentationUrl` from the response with the `200` status
  - added the optional property `servers/items/detailedDescription` to the response with the `200` status
  - the `version` response's property default value `1.0.0` was added for the status `200`
- **2026-01-18** `b0e6563d3fce` — 3 breaking, 1 warning, 3 info
  - the response property `servers/items/repository` became nullable for the status `200`
  - the response property `servers/items/repository` became optional for the status `200`
  - the `code` response property const value `INTERNAL_SERVER_ERROR` was removed for the status `500`
  - added the new `INTERNAL_SERVER_ERROR` enum value to the `code` response property for the response status `500`
  - …3 more
- **2026-01-17** `4f3d96fe2656` — 4 info
  - added the optional property `servers/items/author` to the response with the `200` status
  - added the optional property `servers/items/category` to the response with the `200` status
  - added the optional property `servers/items/createdAt` to the response with the `200` status
  - added the optional property `servers/items/tags` to the response with the `200` status
- …earlier changes not shown

[Full history](https://skmtc.dev/corespeed-io/apis/mcp-store-api/changes/api/v1/servers/get.md)

---

[API](https://skmtc.dev/corespeed-io/apis/mcp-store-api.md) · [All operations](https://skmtc.dev/corespeed-io/apis/mcp-store-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/corespeed-io/mcp-store-api/revisions/25721894961a/schema)
