Skip to main content
Glama

get_version

Retrieve version information for the Things 3 task management application and its URL schemes to ensure compatibility with automation workflows.

Instructions

获取Things应用和URL Scheme的版本信息。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function for the 'get_version' tool. It builds a Things URL scheme with the 'version' command and empty parameters, executes it by opening the URL, and returns a confirmation message to the client.
    async handleGetVersion() { const url = buildThingsUrl('version', {}); await this.openThingsUrl(url); return { content: [ { type: 'text', text: '✅ 版本信息命令已发送。请查看Things应用获取版本信息。', }, ], }; }
  • src/index.js:352-359 (registration)
    Registration of the 'get_version' tool in the ListTools response array, including its name, description, and input schema definition.
    { name: 'get_version', description: '获取Things应用和URL Scheme的版本信息。', inputSchema: { type: 'object', properties: {}, }, },
  • Input schema for the 'get_version' tool, defining an empty object (no parameters required).
    inputSchema: { type: 'object', properties: {}, },
  • Dispatch logic in the CallToolRequest handler's switch statement that routes calls to the 'get_version' tool to its handler method.
    case 'get_version': return await this.handleGetVersion();

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/Mieluoxxx/things_mcp'

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