---
title: "List a project's scenarios"
method: GET
path: "/projects/{projectId}/studies"
tags: ["Studies"]
---

# List a project's scenarios

`GET /projects/{projectId}/studies`

The studies published from this project — name, access mode, attached servers, and share link. Read-only.

## Path parameters

- `projectId` string, required

## Response `200`

The project's studies.

- StudyPage
  - `items` StudySummary[], required
    - `id` string, required
    - `projectId` string, nullable
    - `name` string, required
    - `description` string, nullable
    - `mode` 'project_members' | 'invited_only' | 'anyone_with_link' | 'null', nullable — Who can use the study.
    - `hostStyle` string, nullable — Chat surface style the study renders (e.g. `claude`, `chatgpt`).
    - `hostId` string, nullable — The named host the study publishes (hosts and studies are 1:1).
    - `hostName` string, nullable
    - `serverCount` integer, required
    - `serverNames` string[], required
    - `link` StudyLink — Share link for the study. The URL embeds the access token; visible to any caller who can read the study (the same audience that sees it in the hosted UI).
      - `path` string, required — App-relative share path.
      - `url` string, required — Absolute share URL.
    - `createdAt` number, nullable — Unix epoch milliseconds.
    - `updatedAt` number, nullable — Unix epoch milliseconds.

## Other responses

- `400` — Malformed body or parameters.
- `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.

## Changes

- **2026-09-22** `561e4fd0dfa2` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/mcpjam/apis/mcpjam-api/changes/projects/:projectId/studies/get.md)

---

[API](https://skmtc.dev/mcpjam/apis/mcpjam-api.md) · [All operations](https://skmtc.dev/mcpjam/apis/mcpjam-api/llms.txt) · [OpenAPI document](https://skmtc.dev/mcpjam/apis/mcpjam-api/revisions/04044ef64a5f?raw)
