Wraps the free sunrisesunset.io API to give Claude sunrise, sunset, and twilight times for any location. No authentication needed. You pass in coordinates and get back civil, nautical, and astronomical twilight data plus day length. Useful when you're building location aware features, travel tools, or anything that needs to know when the sun comes up or goes down somewhere. Hosted through Pipeworx's gateway, which also offers an ask_pipeworx tool that lets you query in plain English instead of calling the underlying API directly. Part of a larger 673+ data source collection if you want to connect to the full gateway.
Sunrise-Sunset MCP — wraps the sunrisesunset.io API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"sunrisesunset": {
"url": "https://gateway.pipeworx.io/sunrisesunset/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Sunrisesunset data" })
The gateway picks the right tool and fills the arguments automatically.
MIT