search_items
Locate specific items in the Things app by entering a search query. This tool enables quick retrieval of tasks, projects, or priorities for streamlined organization and management.
Instructions
Search for items in Things
Args: query: Search query
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Implementation Reference
- things_server.py:440-449 (handler)The handler function for the 'search_items' MCP tool, registered with @mcp.tool decorator. It performs a search in Things using the url_scheme module and returns a confirmation.@mcp.tool async def search_items(query: str) -> str: """Search for items in Things Args: query: Search query """ url = url_scheme.search(query) url_scheme.execute_url(url) return f"Searching for '{query}'"