Skip to content
LangChain

framebench for LangChain

app.framebench/framebench

Estimated game fps for any GPU or Apple Silicon chip, with the limiter and tweaks.

client:LangChain transport:streamable-http

Install framebench in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "framebench": {
            "transport": "streamable_http",
            "url": "https://framebench.app/mcp",
        }
})

tools = await client.get_tools()

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

framebench in other clients