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

# List a project's plugins

`GET /projects/{projectId}/plugins`

The live (installed, non-uninstalled) Agent Plugins in the project, disabled ones included (marked `enabled: false`). Read-only: import, activation, enable/disable and uninstall are app flows, not API operations.

## Path parameters

- `projectId` string, required

## Response `200`

The project's plugins.

- PluginPage
  - `items` Plugin[], required
    - `id` string, required
    - `projectId` string, required
    - `name` string, required — Normalized plugin name — the namespace its skills load under.
    - `displayName` string
    - `description` string
    - `enabled` boolean, required — Disabled plugins keep their versions but resolve for no run.
    - `activeVersionId` string — The version environment pins default to. Absent before the first activation.
    - `createdAt` number, required
    - `updatedAt` number, required

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