Skip to content
LangChain

Space Feeds for LangChain

io.github.pipeworx-io/space-feeds

Space Feeds MCP.

client:LangChain transport:streamable-http

Install Space Feeds in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "space-feeds": {
            "transport": "streamable_http",
            "url": "https://gateway.pipeworx.io/space-feeds/mcp",
        }
})

tools = await client.get_tools()

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

Space Feeds in other clients