Audiobookshelf MCP for LangChain
io.github.jeeftor/abs-mcp
Inspect and safely operate Audiobookshelf libraries over MCP.
client:LangChain
transport:stdio
runtime:oci
Install Audiobookshelf MCP in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"abs-mcp": {
"transport": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/jeeftor/abs-mcp:0.6.0"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs