You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: add pre-commit hooks and auto-format codebase
- Add pre-commit configuration with comprehensive hooks
- Configure markdown linting with 120 char line limit
- Add hooks for trailing whitespace, end-of-file, and line endings
- Add Rust quality checks: cargo fmt, clippy, and check
- Add TOML formatting and validation
- Auto-format all files per pre-commit rules
- Update README with pre-commit documentation
Copy file name to clipboardExpand all lines: README.md
+45-5Lines changed: 45 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,13 @@
1
1
# TimeDate MCP Server
2
2
3
-
A Model Context Protocol (MCP) server providing comprehensive time and date operations with timezone support, built with Rust and the PulseEngine MCP framework.
3
+
A Model Context Protocol (MCP) server providing comprehensive time and date operations with timezone support,
4
+
built with Rust and the PulseEngine MCP framework.
4
5
5
6
## Features
6
7
7
8
-**Current Time**: Get current time in any timezone
8
9
-**Time Calculations**: Add/subtract time from dates
9
-
-**Timezone Conversion**: Convert time between different timezones
10
+
-**Timezone Conversion**: Convert time between different timezones
10
11
-**Timezone Information**: Get detailed timezone data including DST status
11
12
-**Time Format Detection**: Detect and work with 12-hour/24-hour formats
12
13
-**Timezone Listing**: Browse available timezones with filtering
@@ -29,44 +30,56 @@ timedate-mcp-server
29
30
## Available Tools
30
31
31
32
### `get_current_time`
33
+
32
34
Get the current time in the specified timezone (defaults to system timezone).
0 commit comments