GitHub Projects MCP Server

delete-project-field

Delete a field from a GitHub Project

Input Schema

NameRequiredDescriptionDefault
fieldIdYesID of the field to delete
projectIdYesGitHub Project ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "fieldId": { "description": "ID of the field to delete", "type": "string" }, "projectId": { "description": "GitHub Project ID", "type": "string" } }, "required": [ "projectId", "fieldId" ], "type": "object" }