Skip to main content
Glama

GitHub MCP Server

add_card_to_column

Add a card containing an issue, pull request, or note to a specific project column in a GitHub repository. Specify the owner, repo, column ID, and content type for precise placement.

Instructions

Add a new card to a project column

Input Schema

NameRequiredDescriptionDefault
column_idYesThe ID of the column to add card to
content_idNoID of the issue or pull request (required if content_type is Issue or PullRequest)
content_typeYesType of content for the card
noteNoThe note content for the card (required if content_type is Note)
ownerYesRepository owner (username or organization)
repoYesRepository name

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "column_id": { "description": "The ID of the column to add card to", "type": "string" }, "content_id": { "description": "ID of the issue or pull request (required if content_type is Issue or PullRequest)", "type": "number" }, "content_type": { "description": "Type of content for the card", "enum": [ "Issue", "PullRequest", "Note" ], "type": "string" }, "note": { "description": "The note content for the card (required if content_type is Note)", "type": "string" }, "owner": { "description": "Repository owner (username or organization)", "type": "string" }, "repo": { "description": "Repository name", "type": "string" } }, "required": [ "owner", "repo", "column_id", "content_type" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tuanle96/mcp-github'

If you have feedback or need assistance with the MCP directory API, please join our Discord server