Note: This guide is for the Tyme Mac app. You need Tyme 2026.9 or later — earlier versions don't include the MCP server.
With Tyme's local MCP server (Model Context Protocol) you can use the AI assistant of your choice — such as Claude or ChatGPT — to read and process your Tyme data. You can ask questions like:
Your AI assistant will pull the data from Tyme via the MCP server and calculate the answers for you. You can also use it to add many time entries at once, or log an entire vacation retroactively. The possibilities are endless.
The MCP server is only available locally for now; there's no remote/HTTP endpoint yet, so the assistant you connect it to must run on the same Mac as Tyme.
For setup you need two things, both shown here: "Tyme → Settings → AI & MCP"
Open Terminal on your Mac and run:
claude mcp add tyme -e TYME_MCP_TOKEN=<YOUR_TOKEN> -- <PATH_TO_TYME_MCP>
Replace <YOUR_TOKEN> and <PATH_TO_TYME_MCP> with the values from Tyme. Claude Code will confirm that the tyme server was added — you can verify anytime with claude mcp list.
claude_desktop_config.json in a text editor.claude_desktop_config.json will then look something like this:{
"mcpServers": {
"tyme": {
"command": "<PATH_TO_TYME_MCP>",
"env": {
"TYME_MCP_TOKEN": "<YOUR_TOKEN>"
}
}
},
"coworkUserFilesPath": "/Users/xyz/Claude",
"preferences": {
…
}
}
tyme as the Nametyme-mcp as the Launch Command (Tyme → Settings → AI & MCP)TYME_MCP_TOKEN and enter the token from Tyme (Tyme → Settings → AI & MCP)Many other AI tools can connect to the Tyme MCP server too — for example Cursor, Windsurf, Cline, VS Code with GitHub Copilot, Zed, and JetBrains AI Assistant. They all use the same basic setup: a command (the path to tyme-mcp) and an environment variable (TYME_MCP_TOKEN) with the token from Tyme. Check your client's own MCP documentation for exactly where to enter these.