Skip to content
LangChain

Divine API - Horoscope, Tarot & Numerology for LangChain

com.divineapi/horoscope

Official Divine API MCP for Horoscope, Tarot, Numerology, and PDF Reports.

client:LangChain transport:streamable-http

Install Divine API - Horoscope, Tarot & Numerology in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "horoscope": {
            "transport": "streamable_http",
            "url": "https://mcp.divineapi.com/horoscope/mcp",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

Divine API - Horoscope, Tarot & Numerology in other clients