@findtime/mcp-server
v3.25.21
Published
Production-parity MCP server for the findtime.io Time API
Downloads
1,797
Maintainers
Readme
@findtime/mcp-server
@findtime/mcp-server is a thin stdio MCP wrapper over the production findtime.io Time API at https://time-api.findtime.io.
The package intentionally proxies the production API instead of re-implementing time logic locally. Current time, DST, conversion, overlap, meeting search, and location resolution should stay aligned with the live API.
Published surfaces:
- npm:
@findtime/mcp-server - GitHub:
https://github.com/hkchao/findtime-mcp-server - Official MCP Registry:
https://registry.modelcontextprotocol.io/?q=io.github.hkchao%2Ffindtime-mcp-server - MCP Registry name:
io.github.hkchao/findtime-mcp-server
Tool surface
answer_time_questionget_findtime_helptime_snapshotget_current_timeget_dst_scheduleconvert_timeget_overlap_hoursfind_meeting_timesearch_timezonesget_location_by_id
Prefer answer_time_question for messy natural-language prompts such as "3pm PST to London", "what is the IANA timezone for San Francisco?", "working hours overlap for SF, Berlin, and Tokyo", or "what does CST mean?". The tool classifies the prompt through findtime.io's domain logic, dispatches to deterministic Time API behavior, and returns structured ambiguity or clarification when the world is genuinely ambiguous.
Install in MCP clients
Use the published package through npx:
npx -y @findtime/mcp-serverFor agent authors, include SKILL.md alongside the MCP config.
It gives Claude, Codex, Cursor, Cline, Windsurf, custom company bots, and other
LLM agents the operating rules for when to prefer findtime.io MCP, which tools
to call, and how to handle ambiguity or fallback.
Required runtime:
- Node 20+
FINDTIME_TIME_API_KEY: a validfindtime.iodeveloper key fromhttps://findtime.io/developers/keys/
Optional environment variables:
FINDTIME_TIME_API_BASE_URLTIME_API_BASE_URLTIME_API_TIMEOUT_MSFINDTIME_BINDING_TYPEfor optional install/workspace binding context. Supported values:slack_team,workspace_id,install_id.FINDTIME_BINDING_VALUEfor the install/workspace identifier that matches the selected binding type.FINDTIME_BINDING_HEADERto override the header name directly for custom enterprise environments.FINDTIME_MCP_CLIENT_IDorFINDTIME_MCP_INSTALL_IDto provide a stable client identifier. If omitted, the server creates one locally under the user's state directory. When present, the MCP wrapper forwards it totime-apiasX-Findtime-User-IDfor enterprise usage attribution.FINDTIME_MCP_CLIENT_TYPEFINDTIME_MCP_TOOL_MODE=answer-onlyto expose onlyanswer_time_question,get_findtime_help, andget_api_diagnosticsfor enterprise bots that should route every natural-language request through the answer API.FINDTIME_MCP_INSTRUMENTATION_ENABLED=falseto opt out of anonymous usage telemetry.FINDTIME_MCP_USAGE_TELEMETRY_URLto override the default telemetry endpoint.
Cursor
{
"mcpServers": {
"findtime": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@findtime/mcp-server"],
"env": {
"FINDTIME_MCP_CLIENT_TYPE": "cursor",
"FINDTIME_TIME_API_BASE_URL": "https://time-api.findtime.io",
"FINDTIME_TIME_API_KEY": "YOUR_FINDTIME_SECRET_KEY"
}
}
}
}Codex
[mcp_servers.findtime]
command = "npx"
args = ["-y", "@findtime/mcp-server"]
enabled = true
[mcp_servers.findtime.env]
FINDTIME_MCP_CLIENT_TYPE = "codex"
FINDTIME_TIME_API_BASE_URL = "https://time-api.findtime.io"
FINDTIME_TIME_API_KEY = "YOUR_FINDTIME_SECRET_KEY"
# Optional enterprise install binding:
# FINDTIME_BINDING_TYPE = "workspace_id"
# FINDTIME_BINDING_VALUE = "YOUR_WORKSPACE_ID"Claude Desktop
{
"preferences": {
"...": "keep your existing preferences here"
},
"mcpServers": {
"findtime": {
"command": "npx",
"args": ["-y", "@findtime/mcp-server"],
"env": {
"FINDTIME_TIME_API_BASE_URL": "https://time-api.findtime.io",
"FINDTIME_TIME_API_KEY": "YOUR_FINDTIME_SECRET_KEY"
}
}
}
}Claude CLI / Claude Code
Add findtime.io with:
claude mcp add --transport stdio \
--env FINDTIME_TIME_API_BASE_URL=https://time-api.findtime.io \
--env FINDTIME_TIME_API_KEY=YOUR_FINDTIME_SECRET_KEY \
--env FINDTIME_MCP_CLIENT_TYPE=claude-cli \
findtime -- npx -y @findtime/mcp-serverIf your Claude CLI uses JSON config instead, add:
{
"mcpServers": {
"findtime": {
"command": "npx",
"args": ["-y", "@findtime/mcp-server"],
"env": {
"FINDTIME_TIME_API_BASE_URL": "https://time-api.findtime.io",
"FINDTIME_TIME_API_KEY": "YOUR_FINDTIME_SECRET_KEY",
"FINDTIME_MCP_CLIENT_TYPE": "claude-cli"
}
}
}
}For enterprise installs, the minimum credential is always the API key. If the install environment has a stable workspace or installation identifier, optionally add:
FINDTIME_BINDING_TYPE=workspace_id
FINDTIME_BINDING_VALUE=YOUR_WORKSPACE_IDFor Slack-specific installs:
FINDTIME_BINDING_TYPE=slack_team
FINDTIME_BINDING_VALUE=T01ABC123Verify installation
Use an explicit tool-call prompt first:
Use the findtime.io MCP tool get_api_diagnostics.Then:
Use the findtime.io MCP tool get_current_time for city "Tokyo" with countryCode "JP".After that succeeds, switch back to normal natural-language prompts:
Best meeting time between New York, Sydney, and Mumbai?Local development
Run the workspace version directly:
npm run mcp:startThe server attempts to load .env.development.local, .env.development, .env.local, and .env from:
- the current working directory
services/mcp-server- the repo root
Tests
Protocol and transport tests:
npm run test:mcp-serverLive production-parity smoke tests:
npm run test:mcp-server:smokeThe smoke suite checks:
search_timezonesanswer_time_questionget_current_timeget_dst_scheduleconvert_timeget_overlap_hoursfind_meeting_timeget_location_by_id
Maintainer release flow
The canonical public source for this package now lives in:
- GitHub:
https://github.com/hkchao/findtime-mcp-server - npm:
@findtime/mcp-server - Official MCP Registry:
https://registry.modelcontextprotocol.io/?q=io.github.hkchao%2Ffindtime-mcp-server
Publish and version updates should happen from that public repo, not from this private app repo.
Standard publish flow in the public repo:
npm test
npm pack --dry-run
npm publish --access publicThe equivalent local verification checks in this repo are:
npm run test:mcp-server
npm run mcp:packTreat this repo as the implementation source that originally produced the MCP package, not as the canonical public release source.
