delete_project_column
Remove a project column in GitHub by specifying its unique column ID using the GitHub MCP Server. Streamline project management and maintain organized workflows.
Instructions
Delete a project column
Input Schema
Name | Required | Description | Default |
---|---|---|---|
column_id | Yes | The unique identifier of the column |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"column_id": {
"description": "The unique identifier of the column",
"type": "number"
}
},
"required": [
"column_id"
],
"type": "object"
}