Smithery

list_issues

List issues in a GitHub repository with filtering options

Remote AndyManastorm/smithery-reference-servers

Other tools also called list_issues? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "page": {
      "type": "number"
    },
    "repo": {
      "type": "string"
    },
    "sort": {
      "enum": [
        "created",
        "updated",
        "comments"
      ],
      "type": "string"
    },
    "owner": {
      "type": "string"
    },
    "since": {
      "type": "string"
    },
    "state": {
      "enum": [
        "open",
        "closed",
        "all"
      ],
      "type": "string"
    },
    "labels": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "per_page": {
      "type": "number"
    },
    "direction": {
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string"
    }
  }
}