---
title: "List Agents"
method: GET
path: "/api/v1/agents"
tags: ["Agents"]
---

# List Agents

`GET /api/v1/agents`

Retrieve paginated list of agents with cursor-based pagination

## Query parameters

- `limit` integer — Max agents 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 agents

- AgentListResponse
  - `agents` Agent[], required
    - `scope` string, required
    - `slug` string, required
    - `displayName` string, required
    - `description` string, required
    - `iconUrl` string, uri
    - `author` string
    - `category` string
    - `tags` string[]
    - `agent` AgentPlatform, required
      - `platform` string, required
      - `url` string, uri, required
    - `createdAt` string, date-time
    - `updatedAt` string, date-time, required
    - `developerId` string
    - `id` string, required
  - `next` string
  - `totalCount` number, required

## Other responses

- `500` — Internal server error

---

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