Skip to main content
FuseFuse
IntegrationsSentryActions

Get Sentry project

Get one project in the bound Sentry organization by slug. Requires org:read or project:read.

Agent markdown

projects.get · Sentry · v1

Details

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

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
project_slugstringYesminLength 1; maxLength 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 64
slugstringYesminLength 1; maxLength 100
namestringYesminLength 1; maxLength 200
platformstringNomaxLength 100
statusstringNominLength 1; maxLength 64
date_createdstringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "project_slug": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    }
  },
  "required": [
    "project_slug"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "slug": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "platform": {
      "type": "string",
      "maxLength": 100
    },
    "status": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "date_created": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "id",
    "slug",
    "name"
  ]
}