Skip to main content
Glama
hald

Things MCP Server

by hald

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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)

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/hald/things-mcp'

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