Model Context Protocol (MCP) Server for the Dwolla API.
Important
Beta Release - This MCP is currently in beta. Core operations including customer creation, funding sources, transfers, and beneficial ownership have been tested and are functional. We are conducting thorough internal testing of all operations before general availability. Please note that breaking changes may occur as we continue to make improvements. While suitable for development and testing, please use with appropriate caution in production environments.
Dwolla API: Dwolla API Documentation
This MCP server enables AI agents to retrieve and analyze data from Dwolla's payment platform using natural language. It provides read-only access to Dwolla's comprehensive payment infrastructure, allowing you to inspect accounts, analyze transfer history, monitor customer data, and generate insights from your payment operations.
- Account Monitoring - View account details, balances, and funding sources
- Customer Analytics - Analyze customer data, beneficial ownership, and compliance status
- Transfer Analysis - Examine transfer history, status, and failure reasons
- Mass Payment Insights - Review bulk payment operations and their items
- Compliance Reporting - Access documents, KBA sessions, and verification data
- Business Intelligence - Query exchange data, webhooks, and system events
Read-Only Operations: This MCP server currently supports data retrieval and analysis only. It does not support creating customers, initiating transfers, or modifying account data at the moment. This makes it ideal for reporting, analytics, and monitoring workflows while maintaining security for sensitive payment operations.
- Sandbox Environment (
https://api-sandbox.dwolla.com) - Perfect for development and testing - Production Environment (
https://api.dwolla.com) - Live payment data access
DXT (Desktop Extension)
Install the MCP server as a Desktop Extension using the pre-built mcp-server.dxt file:
Simply drag and drop the mcp-server.dxt file onto Claude Desktop to install the extension.
The DXT package includes the MCP server and all necessary configuration. Once installed, the server will be available without additional setup.
[!NOTE] DXT (Desktop Extensions) provide a streamlined way to package and distribute MCP servers. Learn more about Desktop Extensions.
Cursor
Or manually:
- Open Cursor Settings
- Select Tools and Integrations
- Select New MCP Server
- If the configuration file is empty paste the following JSON into the MCP Server Configuration:
{
"mcpServers": {
"DwollaMcp": {
"command": "npx",
"args": [
"@dwolla/mcp-server",
"start",
"--bearer-auth",
"..."
]
}
}
}Claude Code CLI
npx @dwolla/mcp-server start --bearer-auth ...Claude Desktop
Claude Desktop doesn't yet support SSE/remote MCP servers.However, you can run the MCP server locally by cloning this repository. Once cloned, you'll need to install dependencies (npm install) and build the server (npm run build).
Then, configure your server definition to reference your local clone. For example:
{
"mcpServers": {
"DwollaMcp": {
"command": "node",
"args": [
"./bin/mcp-server.js",
"start",
"--bearer-auth",
"..."
]
}
}
}Before using the Dwolla MCP server, you'll need:
- Node.js 18+ and npm
- Dwolla Account (Sandbox Account Sign-up)
- Bearer Token generated using your API client credential sfrom your Dwolla application
-
Log in to your Dwolla Dashboard
- Sandbox: https://dashboard-sandbox.dwolla.com
- Production: https://dashboard.dwolla.com
-
Create or select your application
-
Generate a bearer token
-
Copy your bearer token
You will need to specify which environment you want to run the tools against:
Sandbox Environment (Recommended for testing):
--server-url https://api-sandbox.dwolla.comProduction Environment (Live data):
--server-url https://api.dwolla.comChoose your preferred MCP client for detailed setup instructions:
Claude Desktop
- Open Claude Desktop
- Go to
Settings β Developer β Edit Config - Add to your
claude_desktop_config.json:
{
"mcpServers": {
"DwollaMcp": {
"command": "npx",
"args": [
"-y",
"--package",
"@dwolla/mcp-server",
"--",
"mcp",
"start",
"--bearer-auth",
"your_token_here",
"--server-url",
"https://api-sandbox.dwolla.com"
]
}
}
}- Save and restart Claude Desktop
Cursor
- Open Cursor Settings
- Go to
Settings β Cursor Settings β MCP - Click
+ Add New Global MCP Server - Add this configuration:
{
"DwollaMcp": {
"command": "npx",
"args": [
"-y",
"--package",
"@dwolla/mcp-server",
"--",
"mcp",
"start",
"--bearer-auth",
"your_token_here",
"--server-url",
"https://api-sandbox.dwolla.com"
]
}
}- Save the configuration
VS Code
- Open VS Code Settings
- Search for "mcp" to enable MCP support
- Add to your settings.json or workspace settings:
{
"mcp": {
"servers": {
"dwolla": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"--package",
"@dwolla/mcp-server",
"--",
"mcp",
"start",
"--bearer-auth",
"your_token_here"
]
}
}
}
}- Restart VS Code
Local Development
For local development and testing:
# Clone the repository
git clone https://github.com/dwolla/dwolla-mcp.git
cd dwolla-mcp
# Install dependencies
npm install
# Build the project
npm run build
# Run with your bearer token
node bin/mcp-server.js start --bearer-auth "your_token_here" --server-url https://api-sandbox.dwolla.comBusiness Problem: Support teams need to quickly investigate customer issues and transfer failures.
Solutions with AI:
- "Find all failed transfers for customer [email protected] and explain why they failed"
- "Show me customer details for customer ID {id}"
- "List transfers for customer {id} in the last month"
Business Problem: Finance teams need automated reconciliation and reporting.
Solutions with AI:
- "Calculate total transfer volume for Q1 2024 and compare to Q4 2023"
- "Show me all pending transfers over $10,000"
- "What's the current balance of my Dwolla Balance funding source?"
Problem: Compliance teams need to monitor suspicious activity, verify customer information, and ensure regulatory compliance.
Solutions with AI:
- "List all customers missing required beneficial ownership information"
- "Find transfers over $50,000 in the last 30 days for regulatory reporting"
- "Which customers need additional identity documents to maintain compliance?"
- "Identify customers with multiple failed transfer attempts this month"
Problem: Business teams need insights into payment patterns, customer behavior, and platform performance.
Solutions with AI:
- "What's the average transfer amount by customer segment and how has it changed?"
- "How many new verified customers were added this quarter vs last quarter?"
- "Which funding source types have the highest failure rates and why?"
- "Show me customers with increasing transfer volumes who might need premium features"
Problem: Development teams need to debug integrations, test scenarios, and understand API behavior.
Solutions with AI:
- "Show me the exact webhook events and timeline for transfer {id}"
- "What are the most common transfer failure reasons this week and their causes?"
- "Find examples of customers using each funding source type for testing"
- "Analyze the verification process for business customers who got stuck"
Problem: Operations teams need proactive monitoring of system health and business metrics.
Solutions with AI:
- "Has our daily failed transfer rate exceeded 5% and what's causing the failures?"
- "Show me any unusual spikes in transfer volumes or patterns today"
- "Which customers have been stuck in verification states for over 30 days?"
- "Are there any funding sources experiencing higher than normal failure rates?"
Scenario: Support receives an escalation about failed payments
Traditional Process (45+ minutes):
- Log into multiple dashboards
- Look up customers across different systems
- Check transfer history manually
- Research failure codes in documentation
- Escalate to engineering for analysis
With Dwolla MCP (5 minutes):
User: "We're seeing more transfer failures lately. Can you investigate?"
AI: "I'll analyze recent transfer failures for you."
β Pulls transfer data with failed status
β Groups by failure reasons
β Identifies top failure patterns
β Suggests specific customers to investigate
β Recommends remediation steps
Result: "I found a 15% increase in 'insufficient funds' failures,
primarily from 3 specific customers. Here are the details and
recommended actions..."
Result: Issue identified and resolved in 5 minutes instead of 45+ minutes, with complete context for the support agent.
The Dwolla MCP server provides the following tools for data retrieval and analysis:
accounts-get- Retrieve account details and statusaccounts-funding-sources-list- List all funding sources for accountaccounts-transfers-list- List and search transfers for accountaccounts-mass-payments-list- List mass payments for accountaccounts-exchanges-list- List exchanges for account
customers-list- List and search customers with filteringcustomers-get- Retrieve detailed customer informationcustomers-funding-sources-list- List customer funding sourcescustomers-transfers-list- List customer transfer historycustomers-mass-payments-list- List customer mass paymentscustomers-documents-list- List customer documentscustomers-exchanges-list- List customer exchangescustomers-beneficial-owners-list- List customer beneficial ownerscustomers-list-available-connections- List available exchange connections
transfers-get- Retrieve specific transfer detailstransfers-get-failure-reason- Get transfer failure analysistransfers-list-fees- List transfer fees and charges
mass-payments-get- Retrieve mass payment detailsmass-payments-list-items- List items within a mass paymentmass-payments-get-item- Retrieve specific mass payment item
funding-sources-get- Retrieve funding source detailsfunding-sources-get-balance- Get funding source balancefunding-sources-get-micro-deposits- Get micro-deposit verification detailsfunding-sources-get-van-routing- Get Virtual Account Number routing info
documents-get- Retrieve document detailsbeneficial-owners-get- Retrieve beneficial owner informationbeneficial-owners-get-ownership-status- Get beneficial ownership statusbeneficial-owners-documents-list- List beneficial owner documentskba-get-questions- Retrieve KBA (Knowledge-Based Authentication) questions
exchanges-get- Retrieve exchange detailsexchange-partners-list- List available exchange partnersexchange-sessions-get- Get exchange session information
labels-list-for-customer- List labels for customerlabels-get- Retrieve label detailslabels-list-ledger-entries- List ledger entrieslabels-get-ledger-entry- Retrieve specific ledger entrylabels-get-reallocation- Get label reallocation details
webhooks-get- Retrieve webhook detailswebhooks-list-retries- List webhook retry attemptswebhook-subscriptions-list- List webhook subscriptionswebhook-subscriptions-get- Get webhook subscription detailswebhook-subscriptions-list-webhooks- List webhooks for subscriptionevents-list- List eventsevents-get- Retrieve specific event details
business-classifications-list- List business classificationsbusiness-classifications-get- Get business classification detailsroot-get- API entry point for discovery
MCP Server Not Connecting
- Verify your bearer token is valid
- Check that Node.js 18+ is installed:
node --version - Ensure npm/npx is available:
npm --version - Try clearing npm cache:
npm cache clean --force
Environment Configuration Issues
- Confirm you're using the correct environment URL:
- Sandbox:
https://api-sandbox.dwolla.com - Production:
https://api.dwolla.com
- Sandbox:
- Verify your bearer token matches your intended environment
Authentication Errors
- Verify token hasn't expired
- Check that your application is active
Claude Desktop
- Restart Claude Desktop after configuration changes
- Check
claude_desktop_config.jsonsyntax with a JSON validator - Verify file paths are absolute and properly escaped
- Look for error messages in Claude's developer console
Cursor
- Restart Cursor after adding MCP configuration
- Check Settings β Cursor Settings β MCP for configuration status
- Verify the server appears in the MCP tools list
- Try removing and re-adding the server configuration
VS Code
- Ensure GitHub Copilot extension is installed and active
- Check that MCP support is enabled in settings
- Restart VS Code after configuration changes
- Verify the MCP server appears in the agent tools list
Token Validation
# Test your bearer token directly
curl -H "Authorization: Bearer your_token_here" \
https://api-sandbox.dwolla.com/
# Should return API root informationVerbose Logging
- Check your MCP client's logs for detailed error messages
- Enable debug mode in your client if available
- Monitor network requests to identify API call failures
Test with MCP Inspector
- Use the MCP Inspector to test your server:
npx @modelcontextprotocol/inspector npx -y --package @dwolla/mcp-server -- mcp start --bearer-auth "your_token" --server-url https://api-sandbox.dwolla.com
Large Dataset Queries
- Use specific date ranges when querying transfers or events
- Consider filtering by customer or status to reduce response size
- Documentation: Dwolla API Docs
- Community Support: Developer Forum
- Dwolla Support: Dwolla Developer Support
- MCP Protocol: Model Context Protocol Docs
- GitHub Issues: Report bugs or request features in this repository
Important: This MCP server can provide access to sensitive financial data and systems. Following these security best practices is essential to protect your information, maintain data integrity and ensure compliance.
Bearer Token Management
- Never commit bearer tokens to version control
- Use environment variables for token storage
Environment Separation
- Always start with Sandbox for development and testing
- Use separate tokens for sandbox and production environments
- Never use production tokens in development/testing
While we value contributions to this MCP Server, the code is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation. We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.