{"id":36502674,"url":"https://github.com/pulseengine/timedate-mcp","last_synced_at":"2026-01-12T02:25:12.531Z","repository":{"id":307947878,"uuid":"1031194324","full_name":"pulseengine/timedate-mcp","owner":"pulseengine","description":"TimeDate MCP Server - A Model Context Protocol server for time and date operations with timezone support","archived":false,"fork":false,"pushed_at":"2025-10-02T04:30:13.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-09T06:26:31.142Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pulseengine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-03T08:06:59.000Z","updated_at":"2025-10-02T04:28:49.000Z","dependencies_parsed_at":"2025-10-02T06:09:51.255Z","dependency_job_id":"8db816e1-a82a-4115-8684-e3c45ce89eb5","html_url":"https://github.com/pulseengine/timedate-mcp","commit_stats":null,"previous_names":["pulseengine/timedate-mcp"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/pulseengine/timedate-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulseengine%2Ftimedate-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulseengine%2Ftimedate-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulseengine%2Ftimedate-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulseengine%2Ftimedate-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pulseengine","download_url":"https://codeload.github.com/pulseengine/timedate-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pulseengine%2Ftimedate-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28332328,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T00:36:25.062Z","status":"online","status_checked_at":"2026-01-12T02:00:08.677Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-12T02:25:11.807Z","updated_at":"2026-01-12T02:25:12.527Z","avatar_url":"https://github.com/pulseengine.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TimeDate MCP Server\n\nA Model Context Protocol (MCP) server providing comprehensive time and date operations with timezone support,\nbuilt with Rust and the PulseEngine MCP framework.\n\n## Features\n\n- **Current Time**: Get current time in any timezone\n- **Time Calculations**: Add/subtract time from dates\n- **Timezone Conversion**: Convert time between different timezones\n- **Timezone Information**: Get detailed timezone data including DST status\n- **Time Format Detection**: Detect and work with 12-hour/24-hour formats\n- **Timezone Listing**: Browse available timezones with filtering\n\n## Installation\n\nInstall via npm:\n\n```bash\nnpx @pulseengine/timedate-mcp-server\n```\n\nOr install globally:\n\n```bash\nnpm install -g @pulseengine/timedate-mcp-server\ntimedate-mcp-server\n```\n\n## Available Tools\n\n### `get_current_time`\n\nGet the current time in the specified timezone (defaults to system timezone).\n\n**Parameters:**\n\n- `timezone` (optional): Target timezone (e.g., \"America/New_York\", \"Europe/London\")\n\n### `get_time_at`\n\nGet time at a specific date and timezone.\n\n**Parameters:**\n\n- `date_time`: Date/time string (RFC3339, \"YYYY-MM-DD HH:MM:SS\", or \"YYYY-MM-DD\")\n- `timezone` (optional): Target timezone\n\n### `calculate_time_offset`\n\nAdd or subtract time from a given date.\n\n**Parameters:**\n\n- `base_time`: Base time (\"now\" or date string)\n- `offset_hours`: Hours to add (positive) or subtract (negative)\n- `timezone` (optional): Target timezone\n\n### `get_timezone_info`\n\nGet information about the current system timezone.\n\n### `convert_timezone`\n\nConvert time between different timezones.\n\n**Parameters:**\n\n- `time`: Time to convert (\"now\" or date string)\n- `from_timezone`: Source timezone\n- `to_timezone`: Target timezone\n\n### `get_time_format`\n\nDetect time format preference (12-hour vs 24-hour).\n\n### `list_timezones`\n\nList available timezones with optional filtering.\n\n**Parameters:**\n\n- `filter` (optional): Filter string to match timezone names\n\n## Example Usage\n\n```javascript\n// Get current time in Tokyo\nawait server.get_current_time({ timezone: \"Asia/Tokyo\" });\n\n// Convert New York time to London time\nawait server.convert_timezone({\n  time: \"2024-01-15 14:30:00\",\n  from_timezone: \"America/New_York\",\n  to_timezone: \"Europe/London\"\n});\n\n// Add 5 hours to current time\nawait server.calculate_time_offset({\n  base_time: \"now\",\n  offset_hours: 5,\n  timezone: \"UTC\"\n});\n```\n\n## Response Format\n\nAll time responses include:\n\n- `timestamp`: ISO 8601/RFC3339 formatted time\n- `timezone`: Timezone identifier\n- `utc_offset`: UTC offset (e.g., \"+0900\", \"-0500\")\n- `is_dst`: Daylight saving time status\n- `format_12h`: 12-hour format display\n- `format_24h`: 24-hour format display\n\n## Development\n\n### Building from Source\n\n```bash\n# Clone the repository\ngit clone https://github.com/pulseengine/timedate-mcp.git\ncd timedate-mcp\n\n# Build the project\ncargo build --release\n\n# Run tests\ncargo test\n\n# Run the server\ncargo run\n```\n\n### Cross-Platform Builds\n\n```bash\n# Build for all platforms\nnpm run build:all\n\n# Or build for specific platforms\nnpm run build:linux-x64\nnpm run build:darwin-x64\nnpm run build:darwin-arm64\nnpm run build:win32-x64\n```\n\n### Pre-commit Hooks\n\nThis project uses pre-commit hooks to ensure code quality:\n\n```bash\n# Install pre-commit (if not already installed)\npip install pre-commit\n\n# Install git hooks\npre-commit install\n\n# Run manually on all files\npre-commit run --all-files\n```\n\n**Hooks included:**\n\n- Trailing whitespace removal\n- End-of-file fixing\n- YAML/JSON/TOML validation\n- Markdown linting\n- Rust formatting (cargo fmt)\n- Rust linting (cargo clippy)\n- Rust compilation check\n\n## Architecture\n\nBuilt using:\n\n- **Rust**: Core implementation for performance and safety\n- **PulseEngine MCP Framework**: MCP protocol implementation with macros\n- **Chrono \u0026 Chrono-TZ**: Comprehensive timezone and datetime handling\n- **Tokio**: Async runtime for scalable operations\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details.\n\n## Contributing\n\nContributions welcome! Please read our contributing guidelines and submit pull requests to our [GitHub repository](https://github.com/pulseengine/timedate-mcp).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpulseengine%2Ftimedate-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpulseengine%2Ftimedate-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpulseengine%2Ftimedate-mcp/lists"}