GitHub Projects MCP Server

create-project-field

Create a new field in a GitHub Project

Input Schema

NameRequiredDescriptionDefault
dataTypeYesField data type
nameYesField name
projectIdYesGitHub Project ID
singleSelectOptionsNoOptions for single select field

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "dataType": { "description": "Field data type", "enum": [ "TEXT", "NUMBER", "DATE", "SINGLE_SELECT", "ITERATION" ], "type": "string" }, "name": { "description": "Field name", "type": "string" }, "projectId": { "description": "GitHub Project ID", "type": "string" }, "singleSelectOptions": { "description": "Options for single select field", "items": { "additionalProperties": false, "properties": { "color": { "description": "Option color (e.g., BLUE, GREEN, RED)", "type": "string" }, "description": { "description": "Option description", "type": "string" }, "name": { "description": "Option name", "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" } }, "required": [ "projectId", "dataType", "name" ], "type": "object" }