GitHub Projects MCP Server

create-project-item

Add an issue or PR to a GitHub Project

Input Schema

NameRequiredDescriptionDefault
contentIdYesID of the content to add (issue or PR ID)
fieldValuesNoField values to set for the item
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" }, "fieldValues": { "description": "Field values to set for the item", "items": { "additionalProperties": false, "properties": { "fieldId": { "description": "ID of the field", "type": "string" }, "value": { "anyOf": [ { "type": "string" }, { "type": "number" }, { "type": "boolean" }, { "additionalProperties": false, "properties": { "singleSelectOptionId": { "description": "ID of the single select option", "type": "string" } }, "required": [ "singleSelectOptionId" ], "type": "object" }, { "additionalProperties": false, "properties": { "iterationId": { "description": "ID of the iteration", "type": "string" } }, "required": [ "iterationId" ], "type": "object" }, { "additionalProperties": false, "properties": { "date": { "description": "ISO date string", "type": "string" } }, "required": [ "date" ], "type": "object" } ], "description": "Value to set for the field" } }, "required": [ "fieldId", "value" ], "type": "object" }, "type": "array" }, "projectId": { "description": "GitHub Project ID", "type": "string" } }, "required": [ "projectId", "contentId" ], "type": "object" }