Full Braintree integration — manage transactions, refunds, customers, and generate client tokens via the Braintree GraphQL API.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"braintree": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-braintree",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify braintree credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
Full Braintree integration — manage transactions, refunds, customers, and generate client tokens via the Braintree GraphQL API.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-braintree
This MCP server gives AI agents access to Braintree via 10 tools. Connect it to any Aerostack workspace and your agents can interact with Braintree directly.
| Tool | Description |
|---|---|
search_transactions | Search for settled transactions in Braintree |
get_transaction | Get details of a specific Braintree transaction |
create_transaction | Charge a payment method (create a transaction) |
refund_transaction | Refund a settled Braintree transaction |
void_transaction | Void (reverse) a Braintree transaction |
list_customers | List customers in Braintree |
get_customer | Get details of a specific Braintree customer |
create_customer | Create a new customer in Braintree |
delete_customer | Delete a Braintree customer |
generate_client_token | Generate a client token for Braintree frontend integration |
| Variable | Required | Description |
|---|---|---|
BRAINTREE_PUBLIC_KEY | Yes | Your Braintree public key — found in the Braintree Control Panel under Settings → API Keys |
BRAINTREE_PRIVATE_KEY | Yes | Your Braintree private key — found in the Braintree Control Panel under Settings → API Keys |
BRAINTREE_ENVIRONMENT | Yes | Target environment: 'sandbox' (default) or 'production' |
Add the following secrets under Project → Secrets:
BRAINTREE_PUBLIC_KEYBRAINTREE_PRIVATE_KEYBRAINTREE_ENVIRONMENTOnce added, every AI agent in your workspace can use Braintree tools automatically.
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-braintree \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-BRAINTREE-PUBLIC-KEY: your-braintree-public-key' \
-H 'X-Mcp-Secret-BRAINTREE-PRIVATE-KEY: your-braintree-private-key' \
-H 'X-Mcp-Secret-BRAINTREE-ENVIRONMENT: your-braintree-environment' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_transactions","arguments":{}}}'
MIT
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-braintree
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
by @aerostack
Design creation, AI generation, editing, export, assets, brand kits, folders via Canva's official MCP
by @aerostack
Conversations, contacts, tickets, articles via Intercom's official MCP
by @aerostack
Call Claude models directly — run AI conversations, tool-use chains, batch jobs, and model comparisons from any agent.
by @aerostack
Deployments, projects, domains, env vars, logs via Vercel's official MCP
by @aerostack
Read, send, and search Gmail messages — manage labels, drafts, and attachments with full inbox control.
by @aerostack
Manage audiences, campaigns, and subscriber tags in Mailchimp — automate your email marketing with AI.
Yes. The Braintree MCP includes a create_transaction tool that lets Claude create transactions in your Braintree account from a plain-English prompt. You can also update and delete transactions — no Braintree UI needed.
Yes. The Braintree MCP has search and list tools for transactions. Ask Claude to find transactions by any criteria and it runs the Braintree API query for you, returning results directly in the conversation.
Yes. The Braintree MCP uses the open Model Context Protocol standard, so it works in Claude, Cursor, Windsurf, and any other MCP-compatible AI tool. All 10 Braintree tools are available everywhere you connect it — install once on Aerostack.
The Braintree MCP exposes Braintree's AI capabilities to Claude — including generation, transcription, or embedding tools. Claude can chain these with other MCPs to build multi-step AI workflows.