Skip to content
LangChain

Launch Library for LangChain

io.github.pipeworx-io/launch-library

Launch Library 2 MCP — global rocket launch data

client:LangChain transport:streamable-http

Install Launch Library in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

Launch Library in other clients