Skip to content
LangChain

Fantasy Premier League MCP by UnClick for LangChain

io.github.malamutemayhem/fpl

Fantasy Premier League teams, fixtures, players, standings, and league data. By UnClick.

client:LangChain transport:stdio runtime:npm

Install Fantasy Premier League MCP by UnClick in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Fantasy Premier League MCP by UnClick in other clients