Skip to main content
Glama

coderide

by PixdataOrg

update_task

Modify an existing task's description or status on the coderide MCP server by providing its unique identifier (e.g., 'CRD-1'). Requires at least one update field to proceed.

Instructions

Updates an existing task's 'description' and/or 'status'. The task is identified by its unique 'number' (e.g., 'CRD-1'). At least one of 'description' or 'status' must be provided for an update.

Input Schema

NameRequiredDescriptionDefault
descriptionNoOptional. The new description for the task. If provided, it will replace the existing task description.
numberYesThe unique identifier for the task to be updated (e.g., 'CRD-1'). Must follow the format: three uppercase letters, a hyphen, and one or more digits.
statusNoOptional. The new status for the task. Must be one of: 'to-do', 'in-progress', 'completed'. If provided, it will update the task's current status.

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "description": { "description": "Optional. The new description for the task. If provided, it will replace the existing task description.", "type": "string" }, "number": { "description": "The unique identifier for the task to be updated (e.g., 'CRD-1'). Must follow the format: three uppercase letters, a hyphen, and one or more digits.", "pattern": "^[A-Z]{3}-\\d+$", "type": "string" }, "status": { "description": "Optional. The new status for the task. Must be one of: 'to-do', 'in-progress', 'completed'. If provided, it will update the task's current status.", "enum": [ "to-do", "in-progress", "completed" ], "type": "string" } }, "required": [ "number" ], "type": "object" }
Install Server

Other Tools from coderide

Related Tools

    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/PixdataOrg/coderide-mcp'

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