mcp-server-asana

asana_create_project_status

Create a new status update for a project

Input Schema

NameRequiredDescriptionDefault
colorNoThe color of the status (green, yellow, red)
html_textNoHTML formatted text for the status update
opt_fieldsNoComma-separated list of optional fields to include
project_gidYesThe project GID to create the status for
textYesThe text content of the status update
titleNoThe title of the status update

Input Schema (JSON Schema)

{ "properties": { "color": { "description": "The color of the status (green, yellow, red)", "enum": [ "green", "yellow", "red" ], "type": "string" }, "html_text": { "description": "HTML formatted text for the status update", "type": "string" }, "opt_fields": { "description": "Comma-separated list of optional fields to include", "type": "string" }, "project_gid": { "description": "The project GID to create the status for", "type": "string" }, "text": { "description": "The text content of the status update", "type": "string" }, "title": { "description": "The title of the status update", "type": "string" } }, "required": [ "project_gid", "text" ], "type": "object" }