Mercury Number

live EntertainmentGenerator

Get a random number (1-100) with astrological justification based on Mercury's current zodiac position.

1 tools
0ms auth
free tier 50 calls/day

Tools

mercury_number_generate

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.

Parameters
Name Type Description
sign opt string Your sun sign. Optional. Mercury does not know your sign either.
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/mercury-number/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/mercury-number/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"mercury_number_generate","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("mercury_number_generate", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("get a random number (1-100) with astrological justification based on mercury's current zodiac position");