Entertainment
Data source: In-memory curated collection
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/horoscopes/
claude_desktop_config.json
{
"mcpServers": {
"gnist-horoscopes": {
"url": "https://context.gnist.ai/mcp/horoscopes/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/horoscopes/" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "get_zodiac_sign", "arguments": {"name": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/horoscopes/
7 endpoints available:
GET /rest/horoscopes/list_zodiac_signsGET /rest/horoscopes/get_zodiac_signGET /rest/horoscopes/get_daily_horoscopeGET /rest/horoscopes/get_zodiac_sign_by_birthdayGET /rest/horoscopes/check_zodiac_compatibilityGET /rest/horoscopes/list_astrological_elementsGET /rest/horoscopes/report_feedback
Shell
curl "https://context.gnist.ai/rest/horoscopes/get_zodiac_sign?name=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/horoscopes/get_zodiac_sign",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"name": "example"
},
)
print(resp.json())
Command Line
Command
gc horoscopes
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (7)
list_zodiac_signsList all 12 zodiac signs with their details.
get_zodiac_signGet detailed information about a specific zodiac sign.
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | required | Zodiac sign name (e.g. Aries, Taurus, Gemini). Case-insensitive. |
get_daily_horoscopeGet the daily horoscope for a zodiac sign.
| Parameter | Type | Required | Description |
|---|---|---|---|
sign | string | required | Zodiac sign name (e.g. Leo, Scorpio). Case-insensitive. |
date | any | optional | Date in YYYY-MM-DD format. Defaults to today. |
get_zodiac_sign_by_birthdayDetermine which zodiac sign a person is based on their birthday.
| Parameter | Type | Required | Description |
|---|---|---|---|
month | integer | required | Birth month (1-12). |
day | integer | required | Birth day (1-31). |
check_zodiac_compatibilityCheck astrological compatibility between two zodiac signs.
| Parameter | Type | Required | Description |
|---|---|---|---|
sign1 | string | required | First zodiac sign name. Case-insensitive. |
sign2 | string | required | Second zodiac sign name. Case-insensitive. |
list_astrological_elementsList the four classical elements used in astrology.
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |