Skip to content
LangChain

gecko-mcp for LangChain

io.github.frumane/gecko-mcp

Control Firefox browsers (Floorp, LibreWolf, Zen, Firefox) from any MCP client.

client:LangChain transport:stdio runtime:npm

Install gecko-mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

gecko-mcp in other clients