get_git_repository
Retrieve details of a specific Git repository by providing its project ID or key and repository ID or name using the Backlog MCP Server API integration.
Instructions
Returns information about a specific Git repository
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| 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": {
    "projectIdOrKey": {
      "description": "Project ID or project key",
      "type": [
        "string",
        "number"
      ]
    },
    "repoIdOrName": {
      "description": "Repository ID or name",
      "type": "string"
    }
  },
  "required": [
    "projectIdOrKey",
    "repoIdOrName"
  ],
  "type": "object"
}