GitHub Projects MCP Server

list-projects

List GitHub Projects for a user

Input Schema

NameRequiredDescriptionDefault
afterNoCursor for pagination
firstNoNumber of projects to return (max 100)
ownerYesGitHub username

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "after": { "description": "Cursor for pagination", "type": "string" }, "first": { "description": "Number of projects to return (max 100)", "type": "number" }, "owner": { "description": "GitHub username", "type": "string" } }, "required": [ "owner" ], "type": "object" }