Skip to content
LangChain

setlist mcp for LangChain

io.github.chrischall/setlist-mcp

setlist.fm concert data for Claude — setlists, artists, venues, tours, and cities

client:LangChain transport:stdio runtime:npm

Install setlist mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

setlist mcp in other clients