Skip to content
LangChain

myfigurecollection api for LangChain

io.github.ssskay/myfigurecollection-api

Read MyFigureCollection.net: search figures, JAN barcode lookup, shop prices, collections and clubs.

client:LangChain transport:stdio runtime:pypi

Install myfigurecollection api in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "myfigurecollection-api": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["myfigurecollection-api"],
        }
})

tools = await client.get_tools()

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

myfigurecollection api in other clients