monthly_horoscope

Pack: horoscope · Endpoint: https://gateway.pipeworx.io/horoscope/mcp

Get the monthly horoscope for a zodiac sign. Returns the prediction text for the current month plus challenging and standout days.

Parameters

NameTypeRequiredDescription
signstringyesZodiac sign (case-insensitive). One of: aries, taurus, gemini, cancer, leo, virgo, libra, scorpio, sagittarius, capricorn, aquarius, pisces.

Example call

Arguments

{
  "sign": "gemini"
}

curl

curl -X POST https://gateway.pipeworx.io/horoscope/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"monthly_horoscope","arguments":{"sign":"gemini"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('monthly_horoscope', {
  "sign": "gemini"
});

More examples

{
  "sign": "scorpio"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "horoscope": {
      "url": "https://gateway.pipeworx.io/horoscope/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 6, 2026