Backlog MCP Server

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

NameRequiredDescriptionDefault
numberYesPull request number
projectIdOrKeyYesProject ID or project key
repoIdOrNameYesRepository 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" }
ID: lktnbgdbjl