Skip to main content
Glama

version

Check the current version of the SupaThings MCP server to verify compatibility and ensure proper functionality for managing Things 3 data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The 'version' tool handler, which retrieves and returns the application version, database version, and database path.
      "version",
      {},
      async () => {
        const [appVersion, databaseVersion, databasePath] = await Promise.all([
          runAppleScript(`tell application "${THINGS_APP_SCRIPT_TARGET}" to return version`).catch(
            () => ""
          ),
          withDatabase((db) => getDatabaseVersion(db)).catch(() => ""),
          findDatabasePath().catch(() => ""),
        ]);
    
        return buildTextResponse("Retrieved Things version information", {
          application: THINGS_APP_NAME,
          appVersion,
          databaseVersion,
          databasePath,
        });
      }
    );

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