GitHub Projects MCP Server

add-item-to-project

Add an existing issue or pull request to a GitHub Project by specifying the content ID and Project ID for improved project organization and tracking.

Instructions

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" }
ID: 86aw338aa5