We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hildersantos/things-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
get-areas.applescript•522 B
on run argv
tell application "Things3"
set output to ""
repeat with a in areas
try
set areaId to id of a
set areaName to name of a
-- Build output line
set output to output & areaId & "|" & areaName & linefeed
on error errMsg
log "Error processing area: " & errMsg
end try
end repeat
return output
end tell
end run