GitHub Projects MCP Server

add-item-to-project

Add an existing issue or PR to a GitHub Project

Input Schema

NameRequiredDescriptionDefault
contentIdYesID of the content to add (issue or PR ID)
projectIdYesGitHub Project ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "contentId": { "description": "ID of the content to add (issue or PR ID)", "type": "string" }, "projectId": { "description": "GitHub Project ID", "type": "string" } }, "required": [ "projectId", "contentId" ], "type": "object" }