delay
Pack: httpbin · Endpoint: https://gateway.pipeworx.io/httpbin/mcp
Sleep N seconds.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
seconds | number | yes |
Example call
Arguments
{
"seconds": 2
}
curl
curl -X POST https://gateway.pipeworx.io/httpbin/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"delay","arguments":{"seconds":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('delay', {
"seconds": 2
});
More examples
{
"seconds": 5
}
Response shape
Always returns: status, content_type, body
| Field | Type | Description |
|---|---|---|
status | number | HTTP status code |
content_type | string | Content-Type header |
body | object | Response body |
Full JSON Schema
{
"type": "object",
"properties": {
"status": {
"type": "number",
"description": "HTTP status code"
},
"content_type": {
"type": "string",
"description": "Content-Type header"
},
"body": {
"type": "object",
"description": "Response body"
}
},
"required": [
"status",
"content_type",
"body"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"httpbin": {
"url": "https://gateway.pipeworx.io/httpbin/mcp"
}
}
}
See Getting Started for client-specific install steps.