Skip to content
LangChain

billing doctor for LangChain

io.github.lazytitan30/billing-doctor

Diagnose Google Play Billing incidents locally, with evidence. Not affiliated with Google.

client:LangChain transport:stdio runtime:npm

Install billing doctor in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "billing-doctor": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "billing-doctor"],
        }
})

tools = await client.get_tools()

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

billing doctor in other clients