Skip to content
LangChain

Apollo Invoicing for LangChain

io.github.404-studio/apollo-invoicing

Manage Apollo invoices and customers with entity-scoped OAuth and optional read/write access.

client:LangChain transport:streamable-http

Install Apollo Invoicing in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "apollo-invoicing": {
            "transport": "streamable_http",
            "url": "https://eu.spaceinvoices.com/mcp/r/wlr_156199db8087faa6901fdb63ed664604",
        }
})

tools = await client.get_tools()

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

Apollo Invoicing in other clients