GitHub Projects MCP Server

get-repository

Get a GitHub repository by owner and name

Input Schema

NameRequiredDescriptionDefault
ownerYesRepository owner (username)
repoYesRepository name

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "owner": { "description": "Repository owner (username)", "type": "string" }, "repo": { "description": "Repository name", "type": "string" } }, "required": [ "owner", "repo" ], "type": "object" }