nexus_list_exploration_sessions
List exploration sessions in WorkFlowy to organize and filter hierarchical tasks by nexus tag for efficient workflow management.
Instructions
List all exploration sessions (optionally filter by nexus_tag).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nexus_tag | No |
Implementation Reference
- src/workflowy_mcp/server.py:1864-1866 (registration)MCP tool registration for 'nexus_list_exploration_sessions' with description.name="nexus_list_exploration_sessions", description="List all exploration sessions (optionally filter by nexus_tag).", )
- src/workflowy_mcp/server.py:1867-1880 (handler)Handler function that calls the client method to list exploration sessions.def nexus_list_exploration_sessions( nexus_tag: str | None = None, ) -> dict: """List all exploration sessions. Args: nexus_tag: Optional filter - only show sessions for this tag Returns: List of session metadata (session_id, nexus_tag, timestamps, steps, mode, etc.) """ client = get_client() return client.nexus_list_exploration_sessions(nexus_tag=nexus_tag)