get_someday
Retrieve tasks from the Someday list in the Things app using the Things MCP Server. Simplify task management by accessing postponed or future todos through a structured and intuitive process.
Instructions
Get todos from Someday list
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- things_server.py:52-59 (handler)Handler function for the 'get_someday' MCP tool. Decorated with @mcp.tool, which also registers it. Fetches and formats todos from the Someday list in Things app.@mcp.tool async def get_someday() -> str: """Get todos from Someday list""" todos = things.someday(include_items=True) if not todos: return "No items found" formatted_todos = [format_todo(todo) for todo in todos] return "\n\n---\n\n".join(formatted_todos)