Horoscope
live DataHoroscope MCP — wraps the keyless Horoscope App API.
Tools
daily_horoscope 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 questi
No parameters required.
Try it
weekly_horoscope Get the weekly horoscope for a zodiac sign. Returns the prediction text covering the current week.
No parameters required.
Try it
monthly_horoscope Get the monthly horoscope for a zodiac sign. Returns the prediction text for the current month plus challenging and standout days.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/horoscope/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/horoscope/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"daily_horoscope","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("daily_horoscope", {}); // Or ask in plain English:
const answer = await px.ask("horoscope mcp — wraps the keyless horoscope app api");