Remote OpenClaw Blog
Best Finance and Payments MCP Servers in 2026
7 min read ·
Stripe's official MCP server, part of the stripe/agent-toolkit repository, is the best finance and payments MCP server in 2026, because it is the only vendor-maintained payments server that manages real customers, products, payment links, and invoices, and Stripe also hosts it as a remote endpoint at https://mcp.stripe.com. Below it sit five more picks covering onchain data, crypto payments, and stock market feeds, ranked by GitHub stars and verified against each repository's README on July 4, 2026, from the Remote OpenClaw directory of 13,870 servers.
How We Ranked Finance MCP Servers
Finance and payments MCP servers are ranked here by GitHub stars, maintenance activity, and official status, all checked against each repository on July 4, 2026, using the Remote OpenClaw Finance & Payments directory as the source list. Stripe leads on official status and payment coverage rather than raw stars, which is the right call for a category where the server moves real money.
The Finance category is noisy, because it mixes true MCP servers with finance libraries that happen to sit nearby. We filtered those out and kept working MCP servers grouped by the three jobs agents actually do with money: charge customers, read blockchains, and pull market data. For a general starting point, see our best MCP servers in 2026 list.
The 6 Best Finance and Payments MCP Servers in 2026
These six servers cover card payments, crypto payments, onchain data, and stock market data. Install commands were verified against each repo's README in July 2026 and use the claude mcp add syntax for Claude Code.
1. Stripe MCP - card payments and billing
Stripe's official MCP server, part of the stripe/agent-toolkit repository, manages customers, products, prices, payment links, invoices, and documentation search. Run it locally with your Stripe secret key, or connect to the hosted remote server at https://mcp.stripe.com over OAuth. Use a restricted or test-mode key while building. Directory page: stripe/agent-toolkit.
npx -y @stripe/mcp --tools=all --api-key=YOUR_STRIPE_SECRET_KEY
2. blockrun-mcp - onchain data
blockrun-mcp (463 stars) brings onchain and crypto data into agent workflows through a hosted API, so an agent can query blockchain state without you running a node. It installs as a single npm package over stdio. Directory page: blockrunai/blockrun-mcp.
claude mcp add blockrun -- npx -y @blockrun/mcp
3. EVM MCP Server - multi-chain blockchain access
evm-mcp-server (377 stars) gives agents unified access to EVM-compatible chains for reading balances, resolving ENS names, inspecting contracts, and building transfers. A separate community option, Bankless onchain-mcp, is no longer maintained, so prefer this one. Directory page: mcpdotdirect/evm-mcp-server.
claude mcp add evm-mcp-server -- npx @mcpdotdirect/evm-mcp-server
4. Alpha Vantage MCP - stock market data
The official Alpha Vantage MCP (177 stars) exposes real-time and historical stock, forex, and crypto data plus fundamentals to agents. The easiest setup is the hosted remote endpoint, which takes your free Alpha Vantage API key as a query parameter. Directory page: alphavantage/alpha_vantage_mcp.
claude mcp add --transport http alphavantage https://mcp.alphavantage.co/mcp?apikey=YOUR_API_KEY
5. yfinance MCP - Yahoo Finance data
yfinance-mcp (160 stars) wraps Yahoo Finance so agents can pull quotes, financial statements, news, and technical indicators with no API key at all, which makes it a fast free alternative for market research. Directory page: narumiruna/yfinance-mcp.
claude mcp add yfmcp -- uvx yfmcp@latest
6. Coinbase Payments MCP - crypto payments
Coinbase Payments MCP (55 stars) helps agents build and test crypto payment flows, including the x402 pay-per-request standard, from Coinbase Developer Platform. It runs directly through npx with no local build. Directory page: coinbase/payments-mcp.
npx @coinbase/payments-mcp
Comparison Table: Finance MCP Servers at a Glance
The table below compares all six picks on stars, job, and key requirements, with star counts current as of July 4, 2026.
| Rank | Server | Best for | Stars (Jul 2026) | API key | Runs |
|---|---|---|---|---|---|
| 1 | Stripe MCP | Card payments | Official | Secret key or OAuth | Remote or local |
| 2 | blockrun-mcp | Onchain data | 463 | Yes | Local (npx) |
| 3 | EVM MCP Server | Multi-chain access | 377 | No | Local (npx) |
| 4 | Alpha Vantage MCP | Stock market data | 177 | Yes (free tier) | Remote or local |
| 5 | yfinance MCP | Yahoo Finance data | 160 | No | Local (uvx) |
| 6 | Coinbase Payments MCP | Crypto payments | 55 | CDP credentials | Local (npx) |
Browse the Finance & Payments Category
The Remote OpenClaw directory groups 701 servers into the Finance & Payments category, each with a detail page showing stars, transport, and the exact install command. Because this category mixes real servers with finance libraries, the directory filters help you sort working MCP servers from noise.
- Best MCP servers in 2026, the complete ranked list across every category
- Best free MCP servers for no-key tools like the yfinance and EVM picks
- Best MCP servers for database management to store and query the data these feeds return
You can also package your own finance automations as reusable agent skills and list them on the Remote OpenClaw marketplace.
Limitations and Tradeoffs
Payments MCP servers can move real money, so the biggest tradeoff is financial risk rather than capability. A Stripe or Coinbase server given a live key can create charges and payment links, so use restricted or test-mode keys during development, and regenerate any secret you have pasted into a prompt or chat window. Our guide on securing MCP server connections covers key scoping and read-only modes.
Market-data and onchain servers are lower-risk but come with their own caveats. Free feeds like yfinance depend on an unofficial data source that can change without notice, hosted onchain APIs may rate-limit or charge at scale, and some community servers in this category are already deprecated. Verify a repo's last commit date before wiring it into anything that trades or reports on money, and treat data from any single feed as one input rather than ground truth. Stars measure popularity, not accuracy or reliability, which is why the comparison table above pairs each server's star count with its actual job and key model so you can weigh maintenance and risk together.
Related Guides
- Best MCP Servers in 2026: The Complete Ranked List
- Best Free MCP Servers in 2026: No API Key Needed
- Securing Your MCP Server Connections
- Claude Code MCP: How to Add and Manage MCP Servers
Go deeper
The operator playbooks
Production-ready PDF guides for OpenClaw and Hermes Agent — $19.99 each.
Skills for this topic
Browse all skills →Frequently Asked Questions
What is the best finance MCP server in 2026?
Stripe's official MCP server is the best finance and payments MCP server in 2026, because it is the only vendor-maintained payments server and it manages customers, products, payment links, and invoices. For onchain data the EVM MCP Server leads, and for stock market data the official Alpha Vantage MCP is the top pick.
Is there an official Stripe MCP server?
Yes. Stripe maintains an official MCP server inside the stripe/agent-toolkit repository, and it also runs a hosted remote server at https://mcp.stripe.com that connects over OAuth. You can run it locally with npx -y @stripe/mcp --tools=all --api-key=YOUR_STRIPE_SECRET_KEY , ideally using a restricted or test-mode key.
Can an MCP server read blockchain or onchain data?
Yes. The EVM MCP Server and blockrun-mcp both let agents query onchain data such as balances, contracts, and token information across blockchains. The EVM MCP Server needs no API key for read access, while blockrun uses a hosted API, so you avoid running your own node.
Are there free market data MCP servers?
Yes. yfinance-mcp pulls Yahoo Finance quotes, financials, and indicators with no API key, and Alpha Vantage offers a free API tier for its official server. Free feeds rely on data sources that can change without notice, so confirm accuracy before using them for anything financial.
How do I add a finance MCP server to Claude Code?
Run claude mcp add <name> -- <command> for local servers, for example claude mcp add yfmcp -- uvx yfmcp@latest , or claude mcp add --transport http <name> <url> for remote ones like Alpha Vantage. Our Claude Code MCP guide walks through scopes, environment variables, and troubleshooting.





