Skip to content
LangChain

Centipid ISP Billing for LangChain

com.centipidbilling/billing

Query your ISP's revenue, subscribers, payments and routers. Needs a Centipid account and API key.

client:LangChain transport:streamable-http

Install Centipid ISP Billing in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "billing": {
            "transport": "streamable_http",
            "url": "https://mcp.centipidbilling.com/mcp",
        }
})

tools = await client.get_tools()

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

Centipid ISP Billing in other clients