time
Pack: coinbase-exchange · Endpoint: https://gateway.pipeworx.io/coinbase-exchange/mcp
Server time.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/coinbase-exchange/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"time","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('time', {});
Response shape
| Field | Type | Description |
|---|---|---|
iso | string | Server time in ISO 8601 format |
epoch | number | Server time as Unix epoch |
Full JSON Schema
{
"type": "object",
"properties": {
"iso": {
"type": "string",
"description": "Server time in ISO 8601 format"
},
"epoch": {
"type": "number",
"description": "Server time as Unix epoch"
}
},
"description": "Server time"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"coinbase-exchange": {
"url": "https://gateway.pipeworx.io/coinbase-exchange/mcp"
}
}
}
See Getting Started for client-specific install steps.