mercury_number_generate
Pack: mercury-number · Endpoint: https://gateway.pipeworx.io/mercury-number/mcp
Get a random number (1-100) with astrological justification based on Mercury’s current zodiac position. Returns the number and cosmic context. Use when you need a number with Mercury retrograde insights or cosmic reasoning.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/mercury-number/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mercury_number_generate","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('mercury_number_generate', {});
More examples
{
"sign": "gemini"
}
Response shape
| Field | Type | Description |
|---|---|---|
number | number | Random number between 1 and 100 |
sign | string | Mercury’s current zodiac sign |
justification | string | Astrological justification for the generated number |
mercury_retrograde | boolean | Whether Mercury is currently in retrograde |
cosmic_context | string | Additional cosmic reasoning or context |
Full JSON Schema
{
"type": "object",
"properties": {
"number": {
"type": "number",
"description": "Random number between 1 and 100"
},
"sign": {
"type": "string",
"description": "Mercury's current zodiac sign"
},
"justification": {
"type": "string",
"description": "Astrological justification for the generated number"
},
"mercury_retrograde": {
"type": "boolean",
"description": "Whether Mercury is currently in retrograde"
},
"cosmic_context": {
"type": "string",
"description": "Additional cosmic reasoning or context"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"mercury-number": {
"url": "https://gateway.pipeworx.io/mercury-number/mcp"
}
}
}
See Getting Started for client-specific install steps.