update-status
Update section statuses (planned, in_progress, completed) in Web3 Research MCP for consistent progress tracking across projects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
section | Yes | Section name to update (e.g., 'projectInfo', 'technicalFundamentals') | |
status | Yes | New status for the section |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"section": {
"description": "Section name to update (e.g., 'projectInfo', 'technicalFundamentals')",
"type": "string"
},
"status": {
"description": "New status for the section",
"enum": [
"planned",
"in_progress",
"completed"
],
"type": "string"
}
},
"required": [
"section",
"status"
],
"type": "object"
}