Skip to content
LangChain

Startuphub for LangChain

io.github.pipeworx-io/startuphub

StartupHub MCP — wraps the StartupHub.ai private-market API (startuphub.ai)

client:LangChain transport:streamable-http

Install Startuphub in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Startuphub in other clients