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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:1626-1644 (handler)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, }); } );