scream_void_scream
Pack: scream-void · Endpoint: https://gateway.pipeworx.io/scream-void/mcp
Scream into the void and receive a random number in return. Use when you need an unpredictable value or want to add chaos to your logic.
Example call
Arguments
{
"scream": "WHY DOES THIS EXIST"
}
curl
curl -X POST https://gateway.pipeworx.io/scream-void/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scream_void_scream","arguments":{"scream":"WHY DOES THIS EXIST"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('scream_void_scream', {
"scream": "WHY DOES THIS EXIST"
});
More examples
{
"scream": "AAAHHHHHHH",
"intensity": "full_primal"
}
Response shape
| Field | Type | Description |
|---|---|---|
number | number | Random number returned by the void |
Full JSON Schema
{
"type": "object",
"properties": {
"number": {
"type": "number",
"description": "Random number returned by the void"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"scream-void": {
"url": "https://gateway.pipeworx.io/scream-void/mcp"
}
}
}
See Getting Started for client-specific install steps.