stripe mcp server for LangChain
io.github.friendlygeorge/stripe-mcp-server
MCP server for Stripe API — customers, charges, payments, subscriptions, products, and invoices
client:LangChain
transport:stdio
runtime:npm
Install stripe mcp server in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"stripe-mcp-server": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "stripe-mcp-server"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs