current_time_coordinate
Pack: timeapi-io · Endpoint: https://gateway.pipeworx.io/timeapi-io/mcp
Current time at lat/lon.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | |
longitude | number | yes |
Example call
Arguments
{
"latitude": 40.7128,
"longitude": -74.006
}
curl
curl -X POST https://gateway.pipeworx.io/timeapi-io/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"current_time_coordinate","arguments":{"latitude":40.7128,"longitude":-74.006}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('current_time_coordinate', {
"latitude": 40.7128,
"longitude": -74.006
});
More examples
{
"latitude": 51.5074,
"longitude": -0.1278
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Current time at specified coordinates"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"timeapi-io": {
"url": "https://gateway.pipeworx.io/timeapi-io/mcp"
}
}
}
See Getting Started for client-specific install steps.