update_card
Modify Trello card details such as title, description, or labels by specifying card ID and updates. Part of Multi-MCPs, a server integrating APIs like GitHub, Notion, and Spotify for multi-service automation.
Instructions
Update a Trello card
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| card_id | Yes | ||
| updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"card_id": {
"type": "string"
},
"updates": {
"type": "object"
}
},
"required": [
"card_id",
"updates"
],
"type": "object"
}