Skip to content
LangChain

Setlist.id for LangChain

id.setlist/setlist-id

Identify the tracklist of any DJ mix from its YouTube, SoundCloud or Mixcloud URL.

client:LangChain transport:streamable-http

Install Setlist.id in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "setlist-id": {
            "transport": "streamable_http",
            "url": "https://api.setlist.id/mcp",
        }
})

tools = await client.get_tools()

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

Setlist.id in other clients