Stripe for LangChain
io.github.mcp-dir/stripe-mcp
Payments and billing on Stripe with the full official REST API (api.stripe.com), covers the entire d
client:LangChain
transport:streamable-http
tools:7
Install Stripe in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"stripe-mcp": {
"transport": "streamable_http",
"url": "https://api.mcp.ai/p_stripe",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs