GitHub Projects MCP Server

get-project-items

Get items (issues) from a GitHub Project

Input Schema

NameRequiredDescriptionDefault
afterNoCursor for pagination
filterNoFilter for items (e.g., status field value)
firstNoNumber of items to return (max 100)
projectIdYesGitHub Project ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "after": { "description": "Cursor for pagination", "type": "string" }, "filter": { "description": "Filter for items (e.g., status field value)", "type": "string" }, "first": { "description": "Number of items to return (max 100)", "type": "number" }, "projectId": { "description": "GitHub Project ID", "type": "string" } }, "required": [ "projectId" ], "type": "object" }