update_card
Modify card details in Basecamp projects, including title, content, due date, and assignees, by providing project and card IDs via the Basecamp MCP Server.
Instructions
Update a card
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignee_ids | No | Array of person IDs to assign to the card | |
card_id | Yes | The card ID | |
content | No | The new card content/description | |
due_on | No | Due date (ISO 8601 format) | |
project_id | Yes | The project ID | |
title | No | The new card title |
Input Schema (JSON Schema)
{
"properties": {
"assignee_ids": {
"description": "Array of person IDs to assign to the card",
"items": {
"type": "string"
},
"type": "array"
},
"card_id": {
"description": "The card ID",
"type": "string"
},
"content": {
"description": "The new card content/description",
"type": "string"
},
"due_on": {
"description": "Due date (ISO 8601 format)",
"type": "string"
},
"project_id": {
"description": "The project ID",
"type": "string"
},
"title": {
"description": "The new card title",
"type": "string"
}
},
"required": [
"project_id",
"card_id"
],
"type": "object"
}