current_time_ip

Pack: timeapi-io · Endpoint: https://gateway.pipeworx.io/timeapi-io/mcp

Current time at IP.

Parameters

NameTypeRequiredDescription
ipAddressstringyes

Example call

Arguments

{
  "ipAddress": "8.8.8.8"
}

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_ip","arguments":{"ipAddress":"8.8.8.8"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('current_time_ip', {
  "ipAddress": "8.8.8.8"
});

More examples

{
  "ipAddress": "1.1.1.1"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Current time at specified IP address"
}

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.

Regenerated from source · build July 6, 2026