---
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

## Changes

- **2026-01-21** `ba253fbf08a7` — 1 info
  - added the optional property `agents/items/developerId` to the response with the `200` status
- **2026-01-18** `b0e6563d3fce` — 1 breaking, 1 warning, 1 info
  - 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`
  - api operation id `getApiV1Agents` removed and replaced with ``
- **2026-01-17** `4f3d96fe2656` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/corespeed-io/apis/mcp-store-api/changes/api/v1/agents/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)
