GitHub Projects MCP Server

update-project-status

Update the status of a GitHub Project

Input Schema

NameRequiredDescriptionDefault
projectIdYesGitHub Project ID
textYesStatus update text
updateIdNoID of the status update to modify

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "projectId": { "description": "GitHub Project ID", "type": "string" }, "text": { "description": "Status update text", "type": "string" }, "updateId": { "description": "ID of the status update to modify", "type": "string" } }, "required": [ "projectId", "text" ], "type": "object" }