Skip to main content
Glama
hald

Things MCP Server

by hald

get_inbox

Retrieve todos from the Things app Inbox via the Things MCP Server, enabling efficient task management through natural language commands.

Instructions

Get todos from Inbox

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function for the 'get_inbox' tool. It is registered via the @mcp.tool decorator. Retrieves todos from the inbox using the 'things' library, formats them using 'format_todo', and returns a formatted string.
    @mcp.tool async def get_inbox() -> str: """Get todos from Inbox""" todos = things.inbox(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