Skip to content
LangChain

firefox css theme for LangChain

io.github.easonwong-de/firefox-css-theme

MCP for building, inspecting, and live-debugging Firefox CSS themes.

client:LangChain transport:stdio runtime:npm

Install firefox css theme in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

firefox css theme in other clients