Skip to content
LangChain

frostbyte for LangChain

io.github.ozorown/frostbyte

MCP server giving AI agents access to 40+ APIs: geo, crypto, screenshots, DNS, and more

client:LangChain transport:stdio runtime:oci

Install frostbyte in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "frostbyte": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/ozorown/frostbyte-mcp:latest"],
        }
})

tools = await client.get_tools()

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

frostbyte in other clients