Timetta
БесплатноНе проверенMCP server that exposes the Timetta OData API as a universal query gateway, allowing users to list, describe, and query OData entities through natural language.
Описание
MCP server that exposes the Timetta OData API as a universal query gateway, allowing users to list, describe, and query OData entities through natural language.
README
MCP server exposing the Timetta main OData API to MCP clients (Claude Desktop, Claude Code, Codex, Gemini CLI, etc.) as a universal read-write gateway.
Tools
list_entities()— list queryable OData entities.get_entity_schema(entity)— fields, types and navigation properties of an entity. Call this first to learn real field names.query_odata(entity, filter?, select?, expand?, orderby?, top?, skip?)— query an entity using OData semantics (without the leading$).topdefaults to 50, capped at 200.create_entity(entity, data)— create a record (POST).datais a JSON object of field -> value.update_entity(entity, id, data)— update a record by id (PATCH).dataholds only the fields to change.delete_entity(entity, id)— delete a record by id (DELETE).
Configuration
| Variable | Required | Default | Notes |
|---|---|---|---|
TIMETTA_API_TOKEN |
one of the two | — | Static Token API value (Bearer), TTL 1 year. Takes priority when set. |
TIMETTA_CLIENT_ID |
for OAuth | external |
Public OAuth client id used by timetta-mcp login (password grant). |
TIMETTA_AUTH_URL |
no | https://auth.timetta.com |
OAuth auth server. |
TIMETTA_CREDENTIALS_PATH |
no | platform default | Where OAuth tokens are stored. Default: %APPDATA%\timetta-mcp\credentials.json (Windows), ~/.config/timetta-mcp/credentials.json (POSIX). |
TIMETTA_BASE_URL |
no | https://api.timetta.com/odata |
OData base URL. |
The server can create, update and delete records. Effective permissions are governed entirely by the token — use a read-only Timetta token if write access is not needed.
Authentication
The server picks credentials in this order: TIMETTA_API_TOKEN env var →
credentials file written by timetta-mcp login → otherwise an error asking you
to log in.
Run a one-time login and choose a method (like the Timetta VS Code extension):
timetta-mcp login
- Token API (recommended; works with SSO accounts). Paste a long-lived
token generated in Timetta settings (TTL ~1 year). It is saved to
TIMETTA_CREDENTIALS_PATHand sent as a Bearer token. No refresh needed. - Email + password (OAuth password grant). Exchanges your Timetta
email/password for tokens via
grant_type=password(clientexternal) and saves the refresh token. The password is never stored — only the resulting tokens. The server refreshes the access token automatically; re-runtimetta-mcp loginif the refresh token expires (Timetta refresh tokens last roughly 15 days of inactivity).
These are the only two methods Timetta documents for integrations; it offers no
self-service OAuth client registration or browser authorization_code flow.
For CI / automation you can skip login entirely and set TIMETTA_API_TOKEN —
it always takes priority.
Tip: run
timetta-mcpfrom this checkout withuv run timetta-mcp …(oruvx --no-cache --from . timetta-mcp …). Plainuvx --from <path>caches the built environment and may run stale code after you edit the source.
Run
Locally from a checkout:
uvx --from . timetta-mcp
From the repository:
uvx --from git+https://github.com/sh1rokovs/timetta-mcp timetta-mcp
Claude Desktop config
{
"mcpServers": {
"timetta": {
"command": "uvx",
"args": ["--from", "git+https://github.com/sh1rokovs/timetta-mcp", "timetta-mcp"],
"env": { "TIMETTA_API_TOKEN": "YOUR_TOKEN" }
}
}
}
Claude Code
CLI command (installs the server straight from GitHub via uvx):
claude mcp add timetta \
--env TIMETTA_API_TOKEN=YOUR_TOKEN \
-- uvx --from git+https://github.com/sh1rokovs/timetta-mcp timetta-mcp
Scope is selected with -s: local (default, this project only), user
(all projects), or project (writes a committed .mcp.json). To share the
server with everyone who clones the repo, add a .mcp.json at the project root:
{
"mcpServers": {
"timetta": {
"command": "uvx",
"args": ["--from", "git+https://github.com/sh1rokovs/timetta-mcp", "timetta-mcp"],
"env": { "TIMETTA_API_TOKEN": "${TIMETTA_API_TOKEN}" }
}
}
}
${TIMETTA_API_TOKEN} is read from the environment, so the token never lands
in the repo. Verify with claude mcp list / claude mcp get timetta.
Codex CLI
Add the server to ~/.codex/config.toml:
[mcp_servers.timetta]
command = "uvx"
args = ["--from", "git+https://github.com/sh1rokovs/timetta-mcp", "timetta-mcp"]
env = { TIMETTA_API_TOKEN = "YOUR_TOKEN" }
Or via the CLI:
codex mcp add timetta \
--env TIMETTA_API_TOKEN=YOUR_TOKEN \
-- uvx --from git+https://github.com/sh1rokovs/timetta-mcp timetta-mcp
Gemini CLI
Add the server to ~/.gemini/settings.json (user scope) or
.gemini/settings.json in the project root (committed, shared scope):
{
"mcpServers": {
"timetta": {
"command": "uvx",
"args": ["--from", "git+https://github.com/sh1rokovs/timetta-mcp", "timetta-mcp"],
"env": { "TIMETTA_API_TOKEN": "$TIMETTA_API_TOKEN" }
}
}
}
List configured servers with /mcp inside the Gemini CLI.
Development
uv sync
uv run pytest
Example
get_entity_schema("TimeEntries")
query_odata("TimeEntries", filter="Date ge 2024-01-01 and Date le 2024-01-31",
expand="Project,User", select="Date,Hours,Comment")
Установка Timetta
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/sh1rokovs/timetta-mcpFAQ
Timetta MCP бесплатный?
Да, Timetta MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Timetta?
Нет, Timetta работает без API-ключей и переменных окружения.
Timetta — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Timetta в Claude Desktop, Claude Code или Cursor?
Открой Timetta на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Timetta with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
