Skip to content
LangChain

Ani MCP for LangChain

io.github.gavxm/ani-mcp

A smart MCP server for AniList that gets your anime/manga taste - not just API calls.

client:LangChain transport:stdio runtime:npm

Install Ani MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Ani MCP in other clients