Skip to content
LangChain

FireKey MCP for LangChain

io.github.partnerhbhl/firekey-mcp

Manage FireKey browser profiles and browser lifecycles through an authenticated localhost API.

client:LangChain transport:stdio runtime:npm

Install FireKey MCP in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

FireKey MCP in other clients