Skip to content
LangChain

statlyte — live LLM pricing for LangChain

io.github.richardwilkinson9/statlyte

Live LLM pricing, context windows and model ids, read from each vendor's own page every 3 hours.

client:LangChain transport:stdio runtime:npm

Install statlyte — live LLM pricing in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

statlyte — live LLM pricing in other clients