TimeTac
TimeTac time and attendance for DACH teams: time trackings, users, projects, tasks, absences and the live clock-in state. REST API v3 on the customer's own timetac.com subdomain, OAuth 2.0.
7 天免费 · 无需信用卡 · EU 托管
问 TimeTac 任何事
通过 AnythingMCP 对 TimeTac 试一个真实提示 — Claude 调用工具并返回答案。在你的消息上按 Enter 即可在 Cloud 安装。
在 Cloud 上安装 TimeTacClaude 是 AI,可能会出错。请核对回答。
2 分钟设置
- 1在 cloud.anythingmcp.com 开始免费试用。
- 2在连接器商店点击 TimeTac。提示时粘贴凭据。
- 3生成 MCP API 密钥,将 AI 客户端指向生成的 MCP URL。
配置 TimeTac
直接来自连接器定义:在哪里获取凭据、需要哪些权限,以及该适配器调用的是哪个 API。 由连接器作者以英文提供。
Your account name is part of every URL. TimeTac gives each customer a subdomain and repeats the account name in the path: https://<account>.timetac.com/<account>/api/v3/. Set TIMETAC_ACCOUNT to that name (the part before .timetac.com) and the adapter builds both halves.
Getting OAuth credentials
- Ask TimeTac support to enable API access and issue an OAuth 2.0 client for your account — it is not self-service in the web UI.
- You receive a client id and client secret. Complete the authorization-code flow once against
https://<account>.timetac.com/<account>/oauth2/authorizeand keep the refresh token. - Set
TIMETAC_ACCOUNT,TIMETAC_CLIENT_ID,TIMETAC_CLIENT_SECRETandTIMETAC_REFRESH_TOKEN. AnythingMCP refreshes the access token on its own from then on.
Reads end in /read. TimeTac's v3 API is not REST-shaped: the list endpoint for a resource is <resource>/read, and filters go in query parameters like filter=[{"field":"date","comparison":"gt","value":"2026-09-01"}]. The tools below pass a filter string through verbatim so the agent can express whatever the docs allow.
Responses are wrapped in {"Success": true, "Results": [...], "NumResults": n}. An empty Results with Success: true means the filter matched nothing, not that the call failed.
Unverified: these paths follow TimeTac's published v3 documentation and have not been run against a live account. Check the docs before concluding a credential is wrong.
Cloud reachability: <account>.timetac.com is public with a valid certificate.