Skip to content
LangChain

tarot mcp for LangChain

io.github.mrfentmen/tarot-mcp

Draw tarot cards and read card meanings from the Tarot API. No key required.

client:LangChain transport:stdio runtime:npm

Install tarot mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "tarot-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@mrfentmen/tarot-mcp"],
        }
})

tools = await client.get_tools()

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

tarot mcp in other clients