---
title: "List a suite's eval cases"
method: GET
path: "/projects/{projectId}/eval-suites/{suiteId}/cases"
tags: ["Eval runs"]
---

# List a suite's eval cases

`GET /projects/{projectId}/eval-suites/{suiteId}/cases`

Every case in the suite, in the public steps-first shape.

## Path parameters

- `projectId` string, required
- `suiteId` string, required

## Response `200`

The suite's cases.

- EvalCasePage
  - `items` EvalCase[], required
    - `id` string, required
    - `title` string, required
    - `steps` EvalTestStep[], required — Ordered test steps. A `prompt` step is a model turn; a single model-free `toolCall` step is a render-check; `assert` steps hold the expectations.
      - `id` string, required
      - `kind` 'prompt' | 'toolCall' | 'interact' | 'assert', required
      - `prompt` string — User message (`kind: prompt`).
      - `serverName` string — Server that owns the tool (`kind: toolCall`).
      - `toolName` string — Tool name (`kind: toolCall` / `interact`).
      - `arguments` object — Tool-call arguments (`kind: toolCall`).
      - `action` object — Widget action (`kind: interact`).
      - `assertion` object — Predicate or widget assertion (`kind: assert`).
    - `expectedOutput` string
    - `iterations` integer, required
    - `isNegative` boolean, required — When true, the case passes if NO tools are called.
    - `scenario` string
    - `models` object[], required
      - `model` string, required
      - `provider` string
    - `matchOptions` object, nullable
    - `checks` object, nullable
      - `mode` 'inherit' | 'replace' | 'extend'
      - `list` object[]
    - `createdAt` number, nullable
    - `updatedAt` number, nullable
  - `nextCursor` string, nullable

## Other responses

- `401` — Missing, invalid, revoked, or orphaned key (`UNAUTHORIZED`) — or the **target MCP server** needs an OAuth grant (`OAUTH_REQUIRED`), which is a property of the server, not your key.
- `403` — Key is valid but not allowed to do this.
- `404` — Unknown project, server, or resource.
- `429` — Per-key rate limit exceeded (60 requests/minute sustained, bursts up to 10). Honor `Retry-After` and back off with jitter.
- `500` — Something failed on MCPJam's side.
- `502` — Could not connect to the target MCP server.

---

[API](https://skmtc.net/mcpjam/apis/mcpjam-api.md) · [All operations](https://skmtc.net/mcpjam/apis/mcpjam-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mcpjam/mcpjam-api/revisions/b8c36aef7731/schema)
