Skip to content
LangChain

spines for LangChain

io.github.superagentic/spines

Access book collections, reading lists, and bookshelf recognition from AI assistants.

client:LangChain transport:stdio runtime:npm

Install spines in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

spines in other clients