GitHub Projects MCP Server

update-project

Update an existing GitHub Project

Input Schema

NameRequiredDescriptionDefault
closedNoProject closed status
descriptionNoNew project description
projectIdYesGitHub Project ID
publicNoProject visibility
shortDescriptionNoNew short description
titleNoNew project title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "closed": { "description": "Project closed status", "type": "boolean" }, "description": { "description": "New project description", "type": "string" }, "projectId": { "description": "GitHub Project ID", "type": "string" }, "public": { "description": "Project visibility", "type": "boolean" }, "shortDescription": { "description": "New short description", "type": "string" }, "title": { "description": "New project title", "type": "string" } }, "required": [ "projectId" ], "type": "object" }