Skip to main content
Glama

workflowy_uncomplete_node

Mark a WorkFlowy node as not completed to reopen tasks or restore items that were previously marked as done.

Instructions

Mark a WorkFlowy node as not completed

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
node_idYes

Implementation Reference

  • The primary handler function for the workflowy_uncomplete_node tool. It is registered via the @mcp.tool decorator and handles rate limiting before delegating to WorkFlowyClient.uncomplete_node.
    @mcp.tool(name="workflowy_uncomplete_node", description="Mark a WorkFlowy node as not completed") async def uncomplete_node(node_id: str) -> WorkFlowyNode: """Mark a WorkFlowy node as not completed. Args: node_id: The ID of the node to uncomplete Returns: The updated WorkFlowy node """ client = get_client() if _rate_limiter: await _rate_limiter.acquire() try: node = await client.uncomplete_node(node_id) if _rate_limiter: _rate_limiter.on_success() return node except Exception as e: if _rate_limiter and hasattr(e, "__class__") and e.__class__.__name__ == "RateLimitError": _rate_limiter.on_rate_limit(getattr(e, "retry_after", None)) raise
  • MCP tool registration decorator defining the tool name and description.
    @mcp.tool(name="workflowy_uncomplete_node", description="Mark a WorkFlowy node as not completed")

Latest Blog Posts

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/daniel347x/workflowy-mcp-fixed'

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