get_pull_request
Retrieve detailed information for a specific pull request in a Backlog project using project ID, repository ID, and pull request number. Integrates with Backlog MCP Server for efficient project management.
Instructions
Returns information about a specific pull request
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| number | Yes | Pull request number | |
| projectIdOrKey | Yes | Project ID or project key | |
| repoIdOrName | Yes | Repository ID or name | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "number": {
      "description": "Pull request number",
      "type": "number"
    },
    "projectIdOrKey": {
      "description": "Project ID or project key",
      "type": [
        "string",
        "number"
      ]
    },
    "repoIdOrName": {
      "description": "Repository ID or name",
      "type": "string"
    }
  },
  "required": [
    "projectIdOrKey",
    "repoIdOrName",
    "number"
  ],
  "type": "object"
}