GitHub Projects MCP Server

update-project-status

Update the status of a GitHub Project by providing the project ID, status text, and optional update ID for modifications. Streamline project tracking and management directly via GitHub Projects MCP Server.

Instructions

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