Skip to main content
FuseFuse
IntegrationsDopplerActions

List Doppler projects

List projects in the connected Doppler workplace. One page per call; Doppler does not return a continuation token.

Agent markdown

projects.list · Doppler · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
pageintegerNominimum 1
per_pageintegerNominimum 1; maximum 20

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
pageintegerYesminimum 1
projectsarray<object>YesmaxItems 20
projects[]objectYesadditionalProperties false
projects[].idstringYesminLength 1; maxLength 128
projects[].slugstringYesminLength 1; maxLength 128; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$
projects[].namestringYesminLength 1; maxLength 200
projects[].descriptionstringNomaxLength 2000
projects[].created_atstringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page": {
      "type": "integer",
      "minimum": 1
    },
    "per_page": {
      "type": "integer",
      "minimum": 1,
      "maximum": 20
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page": {
      "type": "integer",
      "minimum": 1
    },
    "projects": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "slug": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128,
            "pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "description": {
            "type": "string",
            "maxLength": 2000
          },
          "created_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          }
        },
        "required": [
          "id",
          "slug",
          "name"
        ]
      },
      "maxItems": 20
    }
  },
  "required": [
    "page",
    "projects"
  ]
}