Skip to main content
Glama

show-item

Display a specific item from Things 3 using its unique identifier, with optional search queries and tag filtering for precise retrieval.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
queryNo
filter_tagsNo

Implementation Reference

  • Implementation of the "show-item" tool which opens a specific item in Things.app by ID.
      "show-item",
      {
        id: z.string(),
        query: z.string().optional(),
        filter_tags: z.array(z.string()).optional(),
      },
      async ({ id, query, filter_tags }) => {
        const url = await openThingsURL(
          "show",
          buildURLParams({ id, query, filter: filter_tags })
        );
        return buildTextResponse("Opened item in Things", { id, url });
      }
    );

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/soycanopa/SupaThings-MCP'

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