https://github.com/usrrname/worldtime-mcp-server
A timezone MCP server based off OSS TimezoneDB API
https://github.com/usrrname/worldtime-mcp-server
Last synced: 8 months ago
JSON representation
A timezone MCP server based off OSS TimezoneDB API
- Host: GitHub
- URL: https://github.com/usrrname/worldtime-mcp-server
- Owner: usrrname
- Created: 2025-03-09T16:39:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-10T03:54:33.000Z (about 1 year ago)
- Last Synced: 2025-10-10T03:31:50.850Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WorldTime MCP Server
A simple MCP server that allows you to get the current time for an area.
This uses the [WorldTime API](https://worldtimeapi.org/) and [TimezoneDB](https://timezonedb.com/) for more timezones.
To use the MCP server and gain access to the TimezoneDB API , register at [TimezoneDB](https://timezonedb.com/register) and create an API key.
## Usage with Claude
In Claude Desktop, add the following to your config:
```json
{
"mcpServers": {
"worldtime": {
"command": "node",
"args": ["/Users//worldtime-mcp-server/dist/index.js"],
"env": {
"TIMEZONE_DB_API_KEY": ""
}
}
}
}
```
## Debugging with MCP Inspector
To debug the server, you can use the below to test the MCP Inspector, or run `npm run inspect`.
```bash
npx @modelcontextprotocol/inspector worldtime
```