Skip to main content
FuseFuse
IntegrationsGithubActions

Create GitHub issue

Create an issue in a repository.

Agent markdown

issues.create · GitHub · v1

Details

Risk
Write
Idempotency
Unsafe
Availability
Optional
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=false, idempotent=false, openWorld=true

Scopes

  • repository.issues:write

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
ownerstringYesminLength 1
repostringYesminLength 1
titlestringYesminLength 1
bodystringNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idintegerYes
numberintegerYes
titlestringYes
html_urlstringNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "owner": {
      "type": "string",
      "minLength": 1
    },
    "repo": {
      "type": "string",
      "minLength": 1
    },
    "title": {
      "type": "string",
      "minLength": 1
    },
    "body": {
      "type": "string"
    }
  },
  "required": [
    "owner",
    "repo",
    "title"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "integer"
    },
    "number": {
      "type": "integer"
    },
    "title": {
      "type": "string"
    },
    "html_url": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "number",
    "title"
  ]
}