Skip to content
LangChain

Genius Lyrics MCP by UnClick for LangChain

io.github.malamutemayhem/genius

Search songs and artists and get song and artist detail from Genius. By UnClick.

client:LangChain transport:stdio runtime:npm

Install Genius Lyrics MCP by UnClick in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Genius Lyrics MCP by UnClick in other clients