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
| Name | Type | Required | Description |
|---|---|---|---|
sign | string | yes | Zodiac sign (case-insensitive). One of: aries, taurus, gemini, cancer, leo, virgo, libra, scorpio, sagittarius, capricorn, aquarius, pisces. |
day | string | no | Day to fetch. One of TODAY, TOMORROW, YESTERDAY, or a date in YYYY-MM-DD format. Defaults to TODAY. |
Example call
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":{}}}'
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.