Skip to main content
FuseFuse
IntegrationsJiraActions

Get Jira project

Retrieve a Jira project by id or key.

Agent markdown

projects.get · 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
project_id_or_keystringYesminLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 64
keystringYesminLength 1; maxLength 64
namestringNomaxLength 255
project_type_keystringNomaxLength 64
stylestringNomaxLength 64
simplifiedbooleanNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "project_id_or_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "project_id_or_key"
  ]
}
Output
{
  "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"
  ]
}