Skip to main content
FuseFuse
IntegrationsJiraActions

List Jira projects

List Jira Cloud projects visible to the connection.

Agent markdown

projects.list · Jira · v1

Details

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

Scopes

  • read:jira-work
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
querystringNominLength 1; maxLength 200
start_atintegerNominimum 0; maximum 10000
max_resultsintegerNominimum 1; maximum 50

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
projectsarray<object>YesmaxItems 50
projects[]objectYesadditionalProperties false
projects[].idstringYesminLength 1; maxLength 64
projects[].keystringYesminLength 1; maxLength 64
projects[].namestringNomaxLength 255
projects[].project_type_keystringNomaxLength 64
projects[].stylestringNomaxLength 64
projects[].simplifiedbooleanNo
start_atintegerNominimum 0; maximum 10000
max_resultsintegerNominimum 1; maximum 50
totalintegerNominimum 0
is_lastbooleanNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "query": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "start_at": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10000
    },
    "max_results": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "projects": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "key": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "name": {
            "type": "string",
            "maxLength": 255
          },
          "project_type_key": {
            "type": "string",
            "maxLength": 64
          },
          "style": {
            "type": "string",
            "maxLength": 64
          },
          "simplified": {
            "type": "boolean"
          }
        },
        "required": [
          "id",
          "key"
        ]
      },
      "maxItems": 50
    },
    "start_at": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10000
    },
    "max_results": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    },
    "total": {
      "type": "integer",
      "minimum": 0
    },
    "is_last": {
      "type": "boolean"
    }
  },
  "required": [
    "projects"
  ]
}