daily_horoscope

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

Get the daily horoscope for a zodiac sign. Returns the prediction text for a given day (today, tomorrow, yesterday, or a specific YYYY-MM-DD date). Useful for “what is my horoscope today” style questions.

Parameters

NameTypeRequiredDescription
signstringyesZodiac sign (case-insensitive). One of: aries, taurus, gemini, cancer, leo, virgo, libra, scorpio, sagittarius, capricorn, aquarius, pisces.
daystringnoDay to fetch. One of TODAY, TOMORROW, YESTERDAY, or a date in YYYY-MM-DD format. Defaults to TODAY.

Example call

Arguments

{
  "sign": "aries"
}

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":"daily_horoscope","arguments":{"sign":"aries"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "sign": "pisces",
  "day": "2025-01-15"
}
{
  "sign": "leo",
  "day": "TOMORROW"
}

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