Skip to content
Spec §10 Curated Hub39 Verified Integrations

Finance Payments MCP Servers & Integrations

Connect AI coding assistants to curated Finance Payments Model Context Protocol servers, APIs, and framework instructions.

Total Tools39
Native MCP Servers3
OpenAPI Bridges36
ProtocolJSON-RPC 2.0

Finance Payments integrations enable autonomous AI agents like Claude Desktop, Cursor IDE, and VS Code to interact directly with finance payments workflows, platforms, and data pipelines. By standardizing communication over Model Context Protocol (MCP) JSON-RPC 2.0 transports, these tools eliminate manual context-switching and allow conversational commands to trigger verified actions.

Integrations in this directory encompass both native MCP servers operating over local stdio child processes and OpenAPI-bridged REST services utilizing @modelcontextprotocol/server-openapi. Each listing provides copy-pasteable JSON configurations, required environment variables, and client-specific setup parameters for rapid local deployment.

Every tool listed in the Finance Payments category is audited for protocol conformance, credential isolation, and execution safety under our standardized evaluation framework, ensuring developers can safely connect AI assistants to production infrastructure.

Domain Taxonomy & Classification

What Types of Tools Belong in Finance & Payments?

The Finance & Payments ecosystem encompasses distinct tool architectures tailored for different stages of the development and operational lifecycle.

01

Core Finance Payments Operational Tools

Primary integrations providing direct programmatic control and status inspection for finance payments services.

Key Capabilities
  • Status & metadata inspection
  • Real-time query execution
  • Parameterized tool dispatch
  • Standardized error reporting
02

Automated Task & Workflow Connectors

Enables AI models to trigger automated multi-step sequences and sync data across finance payments platforms.

Key Capabilities
  • Event-driven triggers
  • Webhook dispatch
  • Cross-platform record sync
  • Execution status polling
Examples:Stripe API
03

Observability & Diagnostic Handlers

Inspects logs, tracks error metrics, and monitors performance indicators within finance payments environments.

Key Capabilities
  • Log stream inspection
  • Error correlation
  • Health score auditing
  • Rate limit monitoring
Architectural Guidance

Developer Selection Criteria for Finance & Payments

Key technical dimensions to evaluate when choosing a Finance & Payments integration for your AI assistant environment.

Protocol Transport & Hosting Boundary

Evaluate whether local stdio child process execution or remote Server-Sent Events (SSE) best fits your finance payments workflow security boundary.

Technical Trade-offstdio child processes terminate with your editor session; SSE servers require dedicated network endpoint hosting.

Credential Isolation & Least-Privilege Access

Always supply fine-grained API tokens scoped strictly to the minimal actions required by the AI assistant.

Technical Trade-offBroad write tokens enable full autonomy but create risks of unintended mutations on production systems.

Token Footprint & Schema Size

Select tools with filtered, concise output schemas to preserve LLM context window capacity during multi-turn chats.

Technical Trade-offDumping massive payloads exhausts the model context window and increases API inference costs.

Client Application Compatibility

Verify that the server supports your specific client environment (Claude Desktop, Cursor IDE, or VS Code Cline).

Technical Trade-offMost servers support stdio universally; SSE streaming requires compatible client transports.
Comparative Analysis

Important Architectural Distinctions

Understanding fundamental design trade-offs between execution models, protocol transports, and privilege boundaries.

Native MCP Server vs OpenAPI Bridge

Native Finance Payments MCP servers implement protocol methods natively in TypeScript or Python, while OpenAPI bridges translate REST specifications using standard OpenAPI schemas.

Native MCP ServerModel A

  • Tailored tool signatures specifically designed for LLM prompts
  • Direct local execution with custom prompt templates
  • Optimized error mapping and schema filtering

OpenAPI BridgeModel B

  • Covers 100% of vendor REST API endpoints automatically
  • Zero custom server maintenance; powered by @modelcontextprotocol/server-openapi
  • Requires valid vendor API key and outgoing HTTPS connectivity

Read-Only Inspection vs Mutating Actions

Read-only configurations allow safe exploratory analysis, while mutating configurations permit autonomous modifications to external state.

Read-Only InspectionModel A

  • Zero risk to production environments or team data
  • Ideal for automated queries, diagnostics, and status checks
  • Can run unattended on developer workstations

Mutating Autonomous ActionsModel B

  • Can create, update, or delete external resources
  • Demands human-in-the-loop review before executing destructive actions
  • Requires strict audit logging on the target platform
Editor's Picks

Curated Recommendations

Hand-picked integrations thoroughly tested in laboratory environments for stability, token efficiency, and developer ergonomics.

Source-reportedRecommended for Payment Workflows

Stripe API

Standard Model Context Protocol OpenAPI bridge for Stripe. Supports automated customer lookups, payment intent audits, and invoice workflows.

Quick install:npx -y @modelcontextprotocol/server-openapi https://api.apis.guru/v2/specs/stripe.com/2022-11-15/openapi.json

1Forge Finance APIs

28Auto
Finance & PaymentsNo Auth

The 1Forge Finance API provides a robust, high-performance gateway to global financial market data, specializing in real-time and delayed equities and foreign exchange (Forex) quotes. As a foundational data service, it aggregates and delivers critical market information through its core endpoints: GET /quotes for retrieving current price data for specific symbols, and GET /symbols for accessing a comprehensive list of tradable assets. This API, offered by the financial data provider 1Forge, serves a vital function for developers building financial applications, trading platforms, portfolio trackers, and analytical tools. Typical use cases range from retail investors seeking live market snapshots for personal dashboards to enterprise fintech firms integrating up-to-the-moment pricing into risk management systems, algorithmic trading backtesting frameworks, or currency conversion engines for international payment services. Its value lies in providing a streamlined, dedicated source for the essential data points that underpin countless financial workflows. When exposed as tools to an AI coding assistant through the Model Context Protocol (MCP), the 1Forge API transforms from a static data source into a dynamic, queryable resource that can supercharge the development lifecycle. An AI agent, such as one operating within Claude Desktop, Cursor, or Cline, gains the ability to interact with live market context directly within the developer's workflow. This integration allows the assistant to perform just-in-time data fetches to inform its code suggestions, explanations, or generated logic. For instance, the AI could be instructed to check current exchange rates to calculate accurate invoice amounts in a multi-currency SaaS application it's helping to build, or to validate the price symbol format required for a trading bot by querying the /symbols endpoint for a list of valid Forex pairs. This bridges the gap between abstract coding assistance and concrete, data-driven implementation, enabling the AI to produce more accurate, context-aware, and functionally complete code snippets and architectures. Practical workflow examples demonstrate the powerful synergy between a developer and an AI-augmented MCP server. A developer could instruct the agent with a command like, "Use the 1Forge API to fetch the latest quotes for AAPL, MSFT, and GOOGL, then write a Python function that compares their daily price changes and returns the top performer." The AI would then execute the /quotes call, process the JSON response, and generate the requested function with the data structure pre-validated. In another scenario, a developer building a financial dashboard might say, "Query the /symbols endpoint to get a list of all available cryptocurrency pairs, then generate a TypeScript interface type that represents the structure of a single symbol object." The agent would retrieve the data, analyze its schema, and produce the corresponding TypeScript type definition, saving the developer manual parsing and modeling time. Furthermore, for automating repetitive analysis, a prompt like "Monitor the real-time quote for EUR/USD every minute and update a local JSON file with the timestamp and price" could lead the AI to suggest a complete script utilizing the API, incorporating scheduling and file I/O operations. While the 1Forge API currently operates without an authentication requirement, developers must still adhere to critical security and configuration best practices when setting up an MCP server instance. It is imperative to treat the API endpoint as a potential vector for data leakage or abuse if exposed carelessly. Implement the principle of least privilege by running the MCP server in a sandboxed environment or a container with restricted network access, allowing it to reach only the 1Forge endpoints. Never hardcode any future API keys or sensitive configuration directly into source code; instead, use environment variables or a secrets management system. Developers should also implement client-side rate limiting and request throttling within their applications to respect the API's service terms and prevent accidental denial-of-service scenarios. Input validation on both incoming developer prompts and outgoing API queries is crucial to prevent injection attacks or malformed requests. It is advisable to use the MCP server configuration to explicitly define and allowlist the specific API endpoints that the AI agent is permitted to access, further tightening control over the data flow.

GET /quotesGET /symbols

Accounting API

46Auto
Finance & PaymentsNo Auth

The Accounting API, provided by Apideck, is a comprehensive financial data integration layer designed to unify access to a wide array of accounting and bookkeeping operations. It serves as a single gateway for interacting with core financial modules, enabling developers to programmatically manage and retrieve critical business data. Its core capabilities encompass a full spectrum of accounts payable and receivable functions, including the complete lifecycle management of bills—from creation and retrieval to updates and deletion—as well as the handling of credit notes. Furthermore, it provides access to foundational financial snapshots such as company information and balance sheets. This API is engineered for both enterprise-grade applications needing robust financial data synchronization and consumer-facing tools that require simplified access to accounting records, typically for visualization, reporting, or automated financial management. When exposed as tools through the Model Context Protocol (MCP), this API gains significant value by becoming an actionable resource for AI coding assistants like Claude, Cursor, or Cline. Instead of merely being a reference, the API endpoints transform into dynamic functions that the AI can directly invoke within a developer's workflow. This integration allows the AI to act as a real-time financial data operator. For instance, an AI agent can be instructed to fetch a balance sheet to analyze current liabilities, or it can programmatically create a bill record based on data extracted from an invoice document the user describes. This turns the AI from a code-generation tool into an active participant in business logic implementation, drastically accelerating development cycles for financial software, automating data entry tasks, and enabling rapid prototyping of features that interact with live accounting systems. Practical workflow examples demonstrate the power of this MCP integration. A developer can instruct the AI agent to: "Query the accounting/bills endpoint for all bills over $500 issued in the last 30 days and summarize the total payable amount." The AI would invoke the GET /accounting/bills tool, apply the necessary filtering parameters, and return a structured analysis. Another task could be: "Automate the reconciliation process by fetching the latest credit notes using GET /accounting/credit-notes, then cross-reference them with the last 10 bills to identify any applied credits." The AI could also handle creation and modification tasks, such as: "Based on the purchase order details I provide, generate a new bill record using POST /accounting/bills with vendor 'Acme Corp' and line items for 'Server Rental' and 'Support Fees'." For updates, a command like "Patch the bill with ID 'bill-12345' to change the due date to next month's 15th" would directly utilize the PATCH endpoint, automating what would otherwise be a manual dashboard operation. Adhering to security and configuration best practices is paramount when deploying this API server, especially in an MCP context where AI agents have programmatic access. Developers must enforce the principle of least privilege by configuring API credentials (such as API keys or OAuth tokens) with the minimal permissions required. For a read-only analytical tool, credentials should only grant access to GET endpoints. For a full automation suite, write permissions should be scoped precisely. All API keys and secrets must be stored securely using environment variables or a secrets manager, never committed to source code. When setting up the MCP server, developers should implement robust error handling and rate limiting to prevent runaway API usage. It is also critical to use the provided Mock API endpoint (`https://mock-api.apideck.com`) during development and testing to avoid interacting with live financial data until the integration is fully validated and secured.

GET /accounting/balance-sheetGET /accounting/billsPOST /accounting/bills+7 more

Adyen Account API

34Auto
Finance & PaymentsNo Auth

The Account API is a foundational RESTful service provided by Adyen for the comprehensive management of account-related entities within a classic marketplace or platform integration. It serves as the primary programmatic interface for orchestrating the lifecycle of accounts, account holders, and their associated legal and financial components on the Adyen payments platform. Its core capabilities encompass the creation, retrieval, and deletion of critical data structures, including the accounts themselves, account holder profiles, bank accounts, legal arrangements, shareholder records, and signatory details. Typical use cases are prevalent in enterprise-grade platform operations: onboarding new merchants or sellers by creating account holders and linking their bank accounts for payouts, performing due diligence by managing legal and shareholder information, generating necessary financial documents via tax form retrieval, and finally, executing the secure closure of accounts or account holder relationships when required. This API is the engine behind programmatic account management for businesses that have already established their Adyen platform integration. When exposed as a set of tools through the Model Context Protocol (MCP) for integration with AI coding assistants like Claude Desktop, Cursor, or Cline, this API unlocks significant value by transforming repetitive, multi-step account management workflows into intuitive, natural language-driven tasks. An AI agent can directly interact with the API's endpoints to perform complex queries and updates, acting as a highly efficient co-pilot for platform developers and operations teams. Instead of manually composing HTTP requests or navigating a separate dashboard, a developer can instruct the AI to perform actions conversationally. For example, the AI can be tasked to "generate a summary of all account holders created in the last 7 days and their current status" by leveraging the getAccountHolder endpoint, or it can "draft the payload needed to add a new shareholder to account holder AH_123 for compliance review." This integration shifts the developer's focus from low-level API mechanics to higher-level business logic and decision-making, dramatically accelerating development, debugging, and administrative processes. In practice, a developer can instruct an AI assistant to execute a wide range of dynamic tasks using this MCP server. The AI agent can query records to audit account setups, such as "list all bank accounts linked to account holder ID 456 to verify payout destinations." It can automate compliance updates by crafting requests to "remove a dormant signatory from legal arrangement LA_789" using the deleteSignatories endpoint, or facilitate data cleanup by "deleting all test bank accounts under account ACC_TEST." The agent can also assist in lifecycle management by preparing and executing the calls needed to "close the account for a terminated merchant" or "generate a tax form for account holder AH_001 for the fiscal year." These workflows empower developers to handle bulk operations, validate data integrity, and respond to operational events through simple instructions, with the AI managing the precise API calls and data structures behind the scenes. While the basic specification notes "None" for authentication, this is a critical implementation detail that requires careful attention for production security. Developers must treat this API with the utmost care, as it handles sensitive financial and identity data. The foundational security principle is implementing robust authentication and authorization, typically via Adyen's API keys or OAuth, ensuring each request is properly signed and originates from a trusted source. Adherence to the principle of least privilege is paramount; the API credentials used should have only the permissions absolutely necessary for the task at hand, whether that is read-only access for reporting or specific write permissions for creating accounts. When configuring an MCP server for an AI assistant, credentials must be managed securely outside of the codebase, using environment variables or a secrets manager, never embedded in client-side code. Developers should also ensure that any tool exposed to an AI is wrapped in validation logic to prevent malformed or malicious payloads, and that all actions are logged for audit trails, given the irreversible nature of operations like account closure.

POST /closeAccountPOST /closeAccountHolderPOST /createAccount+7 more

Adyen BinLookup API

28Auto
Finance & PaymentsNo Auth

The Adyen BinLookup API is a critical financial data service provided by Adyen, a leading global payment platform, designed to enable merchants and payment service providers to enhance transaction decisioning and optimize payment acceptance rates. At its core, this API allows developers to submit a payment card's Bank Identification Number (BIN)—the first six to eight digits of a card number—to retrieve essential metadata that is pivotal for payment processing and risk assessment. The two primary endpoints, GET3DSAvailability and GETCostEstimate, serve distinct yet complementary purposes. The former checks for 3D Secure 2.x compatibility, determining whether an issuer supports this fraud-prevention protocol and which authentication version is applicable. The latter provides a real-time cost estimate for processing a transaction, factoring in the card's country, brand, and issuing bank to calculate interchange fees and scheme costs. Typical use cases are widespread in enterprise e-commerce and subscription billing platforms, where dynamically routing payments, pre-qualifying transactions for specific authentication methods, and providing upfront cost transparency to consumers can significantly reduce cart abandonment and optimize profitability. When exposed as toolsets through a Model Context Protocol (MCP) server for AI coding assistants like Claude Desktop or Cursor, the Adyen BinLookup API transforms from a static data endpoint into an intelligent, context-aware resource for development and operational tasks. The primary value lies in enabling the AI to programmatically and dynamically access live payment infrastructure data, removing the need for developers to manually look up BIN information or hard-code static card data. This allows an AI assistant to become an active participant in building and debugging payment flows. For instance, an AI can validate the integration of payment forms in real-time, cross-reference card details with Adyen's database to verify they are test or live BINs, and simulate how different card types would be processed before a transaction is ever submitted. It effectively bridges the gap between code and the complex, real-world rules of the payment ecosystem, fostering smarter, data-driven development workflows. Practical workflow examples illustrate how a developer can instruct an AI agent to perform sophisticated tasks using this MCP-connected API. A developer could command the AI to "Scan this new checkout form, extract all visible BIN prefixes, and use Adyen's tools to generate a report showing which ones support 3D Secure and their estimated processing cost." The AI would then query the endpoints and produce a detailed analysis. In a debugging scenario, one might instruct: "This EU-based user's transaction failed authentication; use the BIN 4000000000000000 to check 3D Secure availability and get a cost estimate for a card issued in Germany." The AI would execute the lookups, returning actionable data that points to whether the issue was an authentication problem or a routing miscalculation. Furthermore, for building dashboards or internal tools, a developer can direct the AI to "Create a script that uses the BIN lookup to fetch and cache cost estimates for the top 100 card BINs we encounter, updating the cache daily." This automates a previously manual data-aggregation task. Critical security and configuration guidelines are paramount when deploying this API, especially within an MCP context. Although the system prompt indicates "None" for authentication, the official Adyen documentation specifies that all calls require authentication via an API credential, typically using a merchant account-specific API key or a combination of a username and password, passed via HTTP Basic Authentication. Best practices must be strictly followed: first, adhere to the principle of least privilege by generating a dedicated API user with permissions restricted solely to the BinLookup service, avoiding use of a primary or high-privilege account key. Second, all communication must occur over TLS 1.2+ encryption. Third, the API key or credentials must be stored securely, never exposed in client-side code or public repositories, and injected into the environment of the MCP server or AI assistant runtime via secure secrets management. When configuring the MCP server, ensure it acts as a secure proxy, handling authentication internally and not exposing raw credentials to the AI model. Developers should also implement rate limiting and error handling in their integration to manage quota and gracefully handle API response variations.

POST /get3dsAvailabilityPOST /getCostEstimate

Adyen Checkout API

34Auto
Finance & PaymentsNo Auth

The Adyen Checkout API, provided by the global payment technology platform Adyen, serves as a unified, powerful engine for initiating and authorizing online payments across a diverse spectrum of methods. Its core capability lies in abstracting the complexity of integrating with numerous payment schemes into a single, consistent interface. Developers can process transactions from major international card networks, including those secured with 3D Secure authentication, as well as popular mobile wallets and a wide array of local payment methods like iDEAL in the Netherlands or Sofort in Germany. This makes it an indispensable tool for both enterprise e-commerce platforms seeking a scalable global solution and consumer-facing applications requiring a seamless, localized checkout experience. Typical use cases span from processing direct card payments and managing Apple Pay sessions to generating shareable payment links, canceling pending transactions, and even handling donation flows. The API endpoints like POST /orders, GET /paymentLinks/{linkId}, and POST /applePay/sessions enable businesses to orchestrate complex payment lifecycles, from order creation and method-specific session management to fulfillment tracking and cancellation. When exposed as tools to an AI coding assistant via the Model Context Protocol, the Adyen Checkout API becomes a force multiplier for developer productivity and application intelligence. An AI agent, equipped with access to these endpoints, transforms from a code generator into an active participant in the development workflow. It can dynamically generate boilerplate code for integrating specific payment methods by querying the API's structure, understand and implement the correct payload schema for creating a payment link with precise parameters, or even help debug integration issues by reasoning about API responses. This contextual awareness allows the AI to provide not just generic snippets, but tailored, configuration-aware code that aligns with the developer's specific Adyen account setup and requirements. The value extends beyond generation; the AI can act as an interactive reference guide, instantly clarifying endpoint purposes, payload fields, or response structures without the developer leaving their IDE, effectively reducing context-switching and accelerating implementation cycles. Practical workflows enabled by this MCP integration include instructing the AI to automate the creation and management of payment infrastructure. A developer could command, "Create a secure payment link for a one-time product purchase of €49.90 with a 24-hour expiration and capture the generated URL," prompting the AI to construct and execute the appropriate POST /paymentLinks call. Another dynamic task could be, "Update the existing payment link [linkId] to change the currency to USD and adjust the amount to $54.50," which would trigger a correctly formulated PATCH request. The AI could assist in analytics or debugging by being asked to "Analyze the payload structure for a 3D Secure card payment authorization" or "Generate the minimal required parameters to initiate a Klarna payment session." Furthermore, it could orchestrate multi-step flows, such as "Create an order for 50 units of product SKU-XYZ, then generate a shareable payment link for that order, and finally provide me the cancellation endpoint details if needed later," guiding the developer through a coherent sequence of API interactions. Critical security and configuration considerations are paramount when exposing this powerful API through an MCP server. Authentication, while noted as "None" for the basic reference, in a production environment requires the use of API keys and potentially client certificates, which must be managed with extreme care. The principle of least privilege should be rigorously applied: API keys used by the AI assistant should have only the permissions absolutely necessary for the intended workflows (e.g., permission to create payment links but not to access detailed transaction reports or process refunds). Configuration must ensure that sensitive credentials are never hardcoded or logged; they should be injected via secure environment variables or a secrets manager. Developers should also implement robust input validation on the AI-constructed payloads and consider setting up rate limiting and monitoring on their Adyen API keys to detect and mitigate any anomalous activity. Finally, all interactions should adhere to Adyen's security guidelines and relevant payment industry standards like PCI DSS, ensuring that the convenience of AI integration does not compromise the fundamental security of payment processing.

POST /applePay/sessionsPOST /cancelsPOST /cardDetails+7 more

Adyen Checkout Utility Service

28Auto
Finance & PaymentsNo Auth

The Adyen Checkout Utility Service is a specialized web service provided by Adyen, a global payment platform, designed to streamline and enhance the integration process for merchants using the Adyen Checkout API suite. Its core capability centers on delivering essential utility functions that simplify common tasks within the payment integration lifecycle. The primary and currently exposed endpoint, POST /originKeys, serves a critical role in modern web-based payment flows. This endpoint dynamically generates unique origin keys for specified merchant domains. These keys are mandatory security artifacts required by the Adyen Checkout Web SDK to establish a secure, trusted communication channel from the client-side checkout page to Adyen's servers, ensuring that payment data and sessions are protected from unauthorized access or tampering. Typical use cases for this API are predominantly enterprise-focused, supporting e-commerce platforms, SaaS providers, and digital marketplaces that need to programmatically manage secure checkout configurations across multiple frontend domains or microservices. It acts as a foundational backend utility, enabling developers to automate the setup and security provisioning stages of payment integration, which is especially valuable for large-scale operations or platforms that dynamically generate checkout pages. When exposed as tools to an AI coding assistant via the Model Context Protocol (MCP), the Adyen Checkout Utility Service unlocks significant efficiency and automation potential for developers. The MCP server acts as a bridge, allowing the AI to directly and safely invoke the service's endpoints. The specific value lies in transforming a manual, often repetitive setup task into an intelligent, conversational operation. Instead of a developer having to manually construct API calls, look up documentation for the correct payload structure, and handle the response, they can instruct the AI assistant in natural language to perform these actions. This integrates Adyen's payment infrastructure directly into the developer's AI-augmented workflow, reducing context switching, minimizing boilerplate code writing, and accelerating the initial setup and ongoing management phases of payment integration. The AI, equipped with this tool, becomes a context-aware partner that understands the developer's project environment and can proactively assist with security and configuration requirements. In practical development workflows, an AI agent equipped with this MCP server can execute dynamic tasks based on developer instructions. For example, a developer could instruct the agent: "Generate a new origin key for our production domain 'checkout.mycompany.com' and the staging domain 'staging.mycompany.com', then update the corresponding configuration files in my project with these keys." The AI would then call the POST /originKeys endpoint with the appropriate domain list, receive the origin keys in the response, and intelligently locate and update the relevant configuration files (like environment variables or a dedicated config module) in the developer's codebase. Another task could be: "Audit and regenerate all origin keys currently used in this project that are older than six months," prompting the AI to first consult project files to list configured domains, then systematically generate new keys via the utility service and propagate the updates, ensuring security compliance through automated key rotation. Strict adherence to security and authentication best practices is paramount when implementing this API integration. Although the basic description notes "None" for authentication, the detailed context specifies that each request must be signed with an API key obtained from the Adyen Customer Area. This is a critical distinction: the API itself does not use OAuth or session-based auth, but relies on a secret key included in the request headers. Developers must treat these Checkout API keys with the highest security, storing them as secrets in environment variables or a dedicated secrets manager, never hardcoding them in source code. Following the principle of least privilege, it is essential to generate and use API keys that have permissions scoped exclusively to the Checkout Utility Service, avoiding keys with broader, unnecessary access to other Adyen services or merchant data. When setting up the MCP server, the configuration should securely inject these credentials, ensuring the AI agent can make authenticated requests without exposing the raw key values in logs, conversations, or user-facing outputs. Regularly rotating these keys and monitoring their usage through Adyen's Customer Area is also a recommended operational security practice.

POST /originKeys

Adyen Data Protection API

28Auto
Finance & PaymentsNo Auth

The Adyen Data Protection API is a specialized, compliance-focused service provided by Adyen, the global payment platform, designed to address the stringent requirements of data privacy regulations, most notably the General Data Protection Regulation (GDPR). Its core capability is the automated processing of Subject Erasure Requests, commonly known as the "right to be forgotten," as mandated under Article 17 of GDPR. This API provides a secure and programmatic method for merchants and platforms to formally request the deletion of a shopper's personal data from Adyen's systems. This includes not only core payment details like card tokens and transaction history but also associated information such as delivery addresses, email addresses, and shopper reference IDs. Typical use cases arise in enterprise environments where businesses must respond efficiently to individual customer requests for data deletion, manage data retention policies, or conduct regular data hygiene audits. It is an essential tool for any organization processing payments through Adyen that needs to demonstrate GDPR compliance, mitigate legal risk, and uphold customer trust through transparent data governance. When exposed as a tool via the Model Context Protocol (MCP) to an AI coding assistant like Claude Desktop or Cursor, the Adyen Data Protection API transforms from a static endpoint into a dynamic component within an intelligent automation workflow. The primary value lies in abstracting the complexity of compliance operations and enabling natural language-driven data governance. An AI agent, equipped with this MCP server, can act as a powerful accelerator for developers and compliance officers. Instead of manually constructing HTTP requests or navigating documentation, a developer can instruct the AI in plain language to perform critical tasks. For example, "AI agent, please submit a GDPR erasure request for the shopper with reference ID 'SHOP-12345' as per the ticket #7890," and the agent can formulate the correct POST /requestSubjectErasure call, handle required parameters, and return a confirmation or error log. This integration democratizes access to compliance functions, reduces the risk of human error in sensitive operations, and allows development teams to focus on building features rather than managing regulatory boilerplate. Practical workflow examples demonstrate significant operational efficiencies. A developer could instruct an AI agent to: "Query our user database for all shoppers inactive for over two years and then use the Adyen Data Protection API to initiate erasure requests for their records, logging each submission to our compliance tracking system." This automates a bulk data retention policy. Another scenario involves customer support integration: "When a support ticket categorized as a 'GDPR Deletion Request' is closed, have the AI agent take the shopper's email from the ticket, look up their Adyen shopper reference, and submit the erasure request, then post a summary back to the ticket as an internal note." This creates an auditable, closed-loop process. Furthermore, the AI could be tasked to: "Generate a weekly compliance report by simulating an erasure request for a test shopper ID to verify API connectivity and success rates, ensuring our integration remains operational." Critical configuration and security practices are paramount when deploying this MCP server. Authentication for this specific API endpoint is listed as "None," which in this context means it relies on the overarching Adyen API credential system (API key, username/password, or client certificates) passed in the request headers, not a separate auth flow. The MCP server must be configured with highly privileged Adyen credentials with explicit permission for the `/requestSubjectErasure` endpoint. Developers must strictly adhere to the principle of least privilege, ensuring these powerful credentials are not exposed and are used only for this specific purpose. Security best practices include: never logging full erasure request payloads, which contain sensitive identifiers; implementing robust input validation within the AI agent to prevent injection of malicious data into shopper reference fields; and using the API exclusively over secured, encrypted channels. All erasure requests should be treated as irreversible and logged in a separate, immutable audit trail to prove compliance to regulators.

POST /requestSubjectErasure

Adyen Payment API

34Auto
Finance & PaymentsNo Auth

The Adyen Payment API, provided by the global payment solution provider Adyen, is a comprehensive suite of programmatic endpoints designed to manage the entire lifecycle of digital transactions. At its core, it enables businesses to securely initiate, process, and settle payments across a vast spectrum of methods, including major credit/debit cards (with support for advanced flows like One-Click and 3D Secure for fraud prevention and compliance), bank transfers, digital wallets, and numerous local payment schemes. This API serves as the critical backend infrastructure for enterprises, e-commerce platforms, mobile applications, and marketplaces, allowing them to offer localized and secure checkout experiences to consumers worldwide. Its capabilities extend beyond simple authorization to include full transaction management, such as capturing deferred payments, processing refunds and cancellations, and voiding pending operations, making it an essential tool for financial operations, revenue recognition, and customer support teams in high-volume, global businesses. Exposing the Adyen Payment API as a set of tools through a Model Context Protocol (MCP) server transforms it into a dynamic, interactive resource for an AI coding assistant like Claude Desktop or Cursor. This integration moves beyond static documentation, granting the AI agent direct, programmatic access to execute real-time financial operations within a development or testing context. The immense value lies in automating and augmenting developer workflows with financial intelligence. For instance, the AI could be instructed to immediately test the integration of a new payment method by drafting a script that calls the appropriate endpoint, or it could analyze a sequence of API logs to identify and suggest fixes for failed authorization patterns. By having transactional capabilities as contextual tools, the AI transitions from a code generator to an active participant in the development lifecycle, capable of validating logic, simulating edge cases, and ensuring robust error handling directly against the payment platform's live or sandbox environment. Practical workflow examples enabled by this MCP integration are numerous and powerful. A developer could instruct the AI agent to "simulate a complete purchase flow for a €150 item using a test card, including authorization and immediate capture," and the AI would sequentially use the POST /authorise and POST /capture tools, returning the transaction identifiers for verification. For reconciliation tasks, one could command, "List all un-captured authorizations from the past 24 hours and suggest which ones to void to free up held funds," leveraging the API's status queries. In customer support debugging, a command like "Investigate the failure reason for payment reference 'ORDER_123' and draft a specific refund command for the €89.50 partial refund amount" would have the AI utilize the /cancelOrRefund tool with appropriate parameters. Furthermore, the AI could proactively monitor for configuration issues by periodically using the /authorise3d tool with test credentials to verify the 3D Secure setup remains functional. Critical to implementation are strict authentication and security protocols. While the basic description indicates "None" for authentication, this is a placeholder; in reality, all Adyen API calls require authentication via API keys (typically passed in an HTTP header) and are bound to a specific merchant account. When setting up the MCP server, developers must securely manage and provide these API keys, ideally using environment variables or a secure secret vault and never hard-coding them. The principle of least privilege is paramount: generate separate API keys with the minimal necessary permissions for the MCP server's specific use case (e.g., a "test-only" key with restricted access to a sandbox environment). Developers should thoroughly test all workflows in Adyen's comprehensive sandbox environment before any production exposure. Finally, rigorous input validation must be enforced on the AI agent's side to ensure it constructs valid API payloads, preventing accidental or malicious misuse of these potent financial tools.

POST /authorisePOST /authorise3dPOST /cancel+4 more

Adyen Payout API

34Auto
Finance & PaymentsNo Auth

The Adyen Payout API, provided by the global payment platform Adyen, is a comprehensive suite of endpoints designed to manage the complete lifecycle of outgoing payments from a merchant's balance to external recipients. Its core capabilities encompass storing payout details for future processing, submitting payout requests for immediate execution, and managing the approval or rejection workflow for third-party payouts. This API is critical for enterprises operating platforms that disburse funds, such as marketplaces settling seller earnings, gig economy platforms paying contractors, financial services firms distributing investment returns, or any business requiring efficient, scalable, and compliant outbound money movement. It abstracts the complexity of interacting with multiple banking networks and payout methods, ensuring that funds are transferred reliably, with appropriate routing and compliance checks handled by Adyen's infrastructure. Exposing the Adyen Payout API as a set of tools via the Model Context Protocol (MCP) to an AI coding assistant transforms it from a passive documentation resource into an active, programmable component within a developer's workflow. This integration allows the AI to directly interact with the live payout system, moving beyond code suggestion to perform real-time financial operations. The value lies in automating complex, multi-step financial processes that require both precision and adherence to business logic. The AI can serve as an intelligent orchestrator, interpreting high-level developer instructions and translating them into specific, correct API calls, thereby reducing manual coding errors, accelerating integration development, and enabling rapid prototyping of payout-related features. Within an MCP-powered development environment, a developer can instruct the AI agent to perform dynamic and practical tasks. For example, one could direct the AI to "generate the API request body to submit a €500 payout to seller ID S12345 using their stored IBAN details, referencing order O789," and the AI would construct the correct `POST /payout` call with all required fields. Another command could be "check the status of the payout with reference PO-987 and, if it's pending approval, draft the `POST /submitThirdParty` request to move it forward." For handling exceptions, a developer might instruct, "find all payouts for the last week that were declined due to insufficient funds and draft the `POST /storeDetail` requests to save the updated bank details for a retry." The AI could also be tasked with creating boilerplate for the `POST /confirmThirdParty` endpoint as part of a new webhook handler, or analyzing a list of payout parameters to suggest the most efficient endpoint, such as recommending `POST /storeDetailAndSubmitThirdParty` for a one-step process. Setting up this MCP server requires meticulous attention to security, primarily concerning authentication. Although the user's prompt indicates "None" for the method, the Adyen Payout API fundamentally relies on API key authentication, where each request must be signed with a secret key. This is a critical security layer that must be configured securely on the MCP server, never exposing keys to the client-side AI assistant directly. Developers must implement the principle of least privilege by generating dedicated API credentials with permissions scoped strictly to the necessary payout actions (e.g., payout permission but not full commerce permissions). It is imperative to use Adyen's test environment during development and to store all secrets, like API keys, in a secure vault, referencing them via environment variables or a secret manager rather than hardcoding. Rigorous validation of all payout parameters on the server-side before transmission to Adyen is also essential to prevent misuse or the processing of erroneous transactions.

POST /confirmThirdPartyPOST /declineThirdPartyPOST /payout+3 more

Adyen Recurring Service

28Auto
Finance & PaymentsNo Auth

The Adyen Recurring Service API is a specialized component of the broader Adyen payments platform, designed to manage the lifecycle of payment credentials stored for recurring transactions. Provided by Adyen, a leading global payment service provider, this API offers essential endpoints for securely handling tokenized payment methods. Its core capabilities are focused on two primary operations: securely disabling stored payment details via a POST request to the /disable endpoint, and retrieving a comprehensive list of a shopper's available recurring payment methods through a POST request to the /listRecurringDetails endpoint. Typical use cases span both enterprise and consumer scenarios, including subscription management platforms needing to deactivate payment methods upon cancellation, or e-commerce applications presenting a returning customer with a list of their previously saved cards or digital wallets during checkout to streamline the payment experience. When exposed as a set of tools to an AI coding assistant via the Model Context Protocol (MCP), this API provides significant value by automating sensitive payment data management tasks within development workflows. The AI agent can be instructed to interact with the API to programmatically verify the status of recurring payment tokens, audit which shoppers have active payment methods, or execute bulk disabling of outdated credentials for compliance. This integration transforms the API from a static backend service into a dynamic resource the AI can query and manipulate to assist in debugging subscription billing flows, populating test environments with realistic recurring payment data, or implementing automated cleanup routines for expired payment tokens. Practical workflow examples enabled by this MCP server include instructing the AI to "query all recurring details for a specific shopper account to diagnose why a subscription renewal failed," allowing the agent to fetch and analyze the available payment methods. A developer could command the AI to "automate the deactivation of all payment details for test users tagged with 'expired' in the database," resulting in the AI systematically calling the /disable endpoint for the relevant token identifiers. Another powerful workflow is having the AI agent "compare the list of active recurring payment methods from Adyen with our internal subscription records to identify discrepancies," which would involve the AI fetching data from both systems and performing a cross-check to ensure data integrity. Although the specified authentication method is listed as "None," this is a critical misinterpretation that developers must not overlook. Interaction with the Adyen Recurring Service API inherently requires proper authentication, typically through an Adyen API key or OAuth 2.0 credential, to ensure secure access to sensitive payment tokens. Best practices dictate that API credentials must be stored securely in environment variables or a secrets manager, never hardcoded in source control. The principle of least privilege should be strictly applied, generating dedicated API keys with permissions scoped only to the recurring service endpoints needed for a specific application or workflow. Furthermore, all API calls should be made over HTTPS, and developers should implement robust error handling and logging to monitor for unauthorized access attempts or anomalous query patterns that could indicate a security issue.

POST /disablePOST /listRecurringDetails

Afterbanks API

28Auto
Finance & PaymentsNo Auth

The Afterbanks API, developed by the Spanish fintech company Afterbanks, serves as a unified gateway for real-time connectivity to a wide range of banking institutions, effectively standardizing the heterogeneous landscape of financial data access. As its foundational premise—"La estandarización de la conexión con cualquier banco en tiempo real"—suggests, the API abstracts away the complexities inherent in integrating with disparate banking systems, each with its own protocols, data formats, and communication standards. At its core, the API exposes three primary endpoints: GET /forms for retrieving bank selection interfaces and institution-specific input requirements, POST /me for establishing authenticated user sessions and retrieving account holder information, and POST /serviceV3 as the primary transactional engine for initiating data aggregation tasks such as balance queries, transaction history retrieval, and account statement downloads. This architecture positions Afterbanks as a critical middleware layer for financial technology companies, accounting platforms, personal finance management applications, credit assessment bureaus, and enterprise treasury systems that require consolidated, real-time access to banking data across multiple institutions within Spain and broader European markets. The API is particularly valuable for organizations seeking to offer account aggregation as a feature, automate bookkeeping by pulling transaction data directly from source banks, or build financial dashboards that present users with a holistic view of their banking relationships across multiple providers. When exposed as tools through the Model Context Protocol (MCP) to AI coding assistants such as Claude Desktop, Cursor, or Cline, the Afterbanks API unlocks a uniquely powerful paradigm where developers can engage in conversational, intent-driven financial system integration. The MCP server wrapper transforms each API endpoint into a callable tool that the AI agent can reason about, sequence, and invoke based on natural language instructions. This means a developer working on a fintech application can instruct the AI to dynamically fetch the list of supported banking forms via GET /forms to determine which institutions are available and what credentials they require, then use POST /me to validate a user connection, and subsequently leverage POST /serviceV3 to pull real-time transaction data—all without manually consulting documentation or writing boilerplate HTTP client code. The AI assistant gains contextual awareness of the Afterbanks data model and can intelligently handle error responses, suggest appropriate bank identifiers based on user input, and compose multi-step workflows that chain endpoints together in the correct sequence. This integration transforms the development experience from static, reference-dependent coding into a fluid collaboration where the AI acts as a knowledgeable intermediary between the developer's business logic intentions and the API's technical capabilities. Consider a practical workflow scenario where a developer is building an automated bookkeeping reconciliation tool. By instructing the AI coding assistant via MCP, the developer can say: "Set up a function that connects to a user's bank account using Afterbanks, retrieves the last thirty days of transactions, and categorizes them based on merchant descriptions." The AI agent can then invoke the GET /forms endpoint to present the user with a bank selection interface, use POST /me to establish the connection with provided credentials, and call POST /serviceV3 with appropriate parameters to fetch the transaction history. Going further, the developer might request: "Create a cron-triggered service that periodically calls Afterbanks to check if new transactions have appeared since the last sync and updates the local database accordingly," enabling the AI to generate a complete polling mechanism with incremental sync logic. Another dynamic task could involve instructing the AI to "Generate a summary report comparing the balances across all connected Afterbanks accounts and flag any accounts where the balance drops below a configurable threshold," resulting in a composite workflow that queries multiple connections, aggregates the results, and produces actionable alerts. These examples illustrate how MCP integration transforms static API calls into composable, context-aware building blocks that accelerate prototyping and reduce cognitive overhead during complex financial application development. While the API endpoint structure suggests a streamlined integration model, developers implementing the Afterbanks MCP server should exercise rigorous security diligence, particularly given the sensitivity of financial data in transit. Even when the underlying API documentation indicates minimal authentication requirements for certain endpoints, best practice mandates that all credentials—including any API keys, tokens, or bank login information—must be stored in environment variables or a secrets management system rather than hardcoded in source files or configuration panels. The principle of least privilege should guide MCP tool exposure, meaning the AI assistant should only be granted access to the specific Afterbanks endpoints and operations required for the current development context rather than unrestricted access to all capabilities. Developers should implement robust input validation on all parameters passed through MCP tool calls to prevent injection attacks, enforce HTTPS-only communication with the Afterbanks API endpoints, and ensure that any logging mechanisms do not persistently record sensitive banking credentials or account numbers. Additionally, rate limiting should be configured at the MCP server layer to prevent accidental or malicious overuse of API calls, and all asynchronous operations initiated through POST /serviceV3 should include proper error handling, retry logic with exponential backoff, and user notification mechanisms for operations that require manual intervention or credential re-authentication. Regular auditing of MCP server access logs and API usage patterns will help maintain compliance with financial data regulations and ensure the integration remains secure throughout its operational lifetime.

GET /formsPOST /mePOST /serviceV3

Amazon Managed Blockchain

46Auto
Finance & PaymentsNo Auth

Amazon Managed Blockchain (AMB) is a fully managed service provided by Amazon Web Services (AWS) that simplifies the creation and operation of scalable blockchain networks. It supports open-source frameworks like Hyperledger Fabric and Ethereum, enabling enterprises to build decentralized applications where multiple parties can securely conduct transactions and share data without relying on a central authority. The API serves as the foundational interface for programmatically managing the entire lifecycle of these networks, from creation and configuration to member and node governance. Core capabilities exposed through endpoints include creating and inspecting blockchain networks, managing network membership by inviting or listing members, provisioning and monitoring network nodes, and governing the network through proposal-based voting mechanisms. This makes AMB ideal for enterprise use cases such as supply chain tracking, multi-party financial settlements, identity management, and cross-organizational data sharing where transparency, immutability, and security are paramount. When exposed as tools to an AI coding assistant via the Model Context Protocol (MCP), this API gains significant value by transforming abstract infrastructure management into actionable, context-aware operations. An AI agent integrated with the AMB MCP server can act as a real-time infrastructure partner, dynamically querying network states to inform development decisions, automating repetitive administrative tasks, and reducing the cognitive load on developers. For instance, the AI can instantly list current network members or nodes to verify configurations, create new members on demand to support application development, or retrieve pending proposals to assess governance status. This integration bridges the gap between application code and the underlying blockchain infrastructure, enabling developers to interact with their networks using natural language instructions, which accelerates development cycles and reduces the likelihood of manual configuration errors. Practical workflow examples demonstrate how this integration empowers developers to perform complex tasks efficiently. A developer could instruct the AI agent to "list all current members on network X to confirm the test environment is set up correctly," and the agent would use the GET /networks/{networkId}/members endpoint to provide a structured response. Another instruction like "propose adding a new member organization called 'SupplierA' for review" would prompt the agent to craft and submit a proposal via the POST /networks/{networkId}/proposals endpoint. The AI can also monitor infrastructure, such as by responding to "check the status of all nodes in our production network" using GET /networks/{networkId}/nodes, or perform maintenance like "spin up two new peer nodes in the Asia-Pacific region" via POST /networks/{networkId}/nodes. These interactions enable proactive management, allowing the developer to focus on business logic while the AI handles the procedural aspects of blockchain network administration. Despite the API's current documentation noting "None" for authentication in this context, integrating it with an MCP server for real-world use absolutely requires robust security measures. All interactions with AWS APIs must be authenticated using AWS Identity and Access Management (IAM) credentials or temporary security tokens from the AWS Security Token Service (STS). Developers should adhere to the principle of least privilege by creating a dedicated IAM user or role with granular permissions that only allow the specific AMB API actions necessary for the AI assistant's intended scope, such as read-only access for monitoring or narrowly scoped write permissions for management tasks. Furthermore, secure handling of credentials is critical; access keys should never be hard-coded and should instead be managed through environment variables or a secure secrets manager. The MCP server itself should be configured to handle credential injection securely, ensuring that all requests to the Amazon Managed Blockchain API are both authenticated and encrypted via HTTPS to protect sensitive network and governance data in transit.

GET /accessorsPOST /accessorsGET /networks/{networkId}/..+7 more

Apache Airflow API

46Auto
Finance & PaymentsNo Auth

The Airflow API (Stable) is a comprehensive RESTful interface provided by the Apache Airflow project, the industry-standard platform for programmatically authoring, scheduling, and monitoring data pipelines and complex workflow orchestration. This API serves as the programmatic backbone for Airflow, enabling external systems and developers to interact with its core components without relying solely on the web-based UI. Its primary function is to expose Airflow's internal objects—such as Directed Acyclic Graphs (DAGs), connections, configuration, and source code—via a set of well-defined, JSON-based HTTP endpoints. Typical enterprise use cases for this API are extensive and include automated pipeline deployment, dynamic workflow management, granular audit logging, and integration with external monitoring or ticketing systems. Data engineering teams, platform administrators, and MLOps practitioners leverage these endpoints to script administrative tasks, validate pipeline configurations programmatically, and build custom tooling that extends Airflow's native capabilities into broader data platform ecosystems. Exposing the Airflow API through a Model Context Protocol (MCP) server unlocks significant new value by transforming it from a static management tool into a dynamic, context-aware resource for AI-powered development assistants. When integrated with an AI coding assistant like Claude Desktop or Cursor, the API allows the AI to directly inspect and manipulate the state of a data orchestration environment in real-time. This moves beyond simple code generation into active operational support. The AI agent can gain situational awareness by querying the current DAG schedule, connection configurations, or recent warnings, enabling it to generate code that is precisely tailored to the existing environment. For instance, instead of producing generic DAG templates, the AI can suggest or create new workflows that correctly reference available connections or align with established naming conventions by querying the live system first. This creates a powerful feedback loop where the AI's output is immediately validated against and contextualized within the user's production Airflow instance. Practical workflows enabled by this MCP integration are both numerous and impactful. A developer can instruct the AI agent to perform diagnostic and operational tasks such as, "Query all currently defined DAGs to list which ones have recent warnings, then suggest possible causes based on their configuration," which would utilize the `GET /dags` and `GET /dagWarnings` endpoints. Another example is, "Check if a connection ID for a PostgreSQL database named 'prod_analytics' exists; if not, create a placeholder connection entry for it," which would chain calls to `GET /connections`, `POST /connections`, and potentially `POST /connections/test` to validate the new entry. An AI agent could also be tasked with, "Retrieve the source code for a specific DAG file token and analyze it for potential performance bottlenecks in task scheduling," using the `GET /dagSources/{file_token}` endpoint. These scenarios automate repetitive verification tasks, accelerate onboarding into new Airflow environments by allowing the AI to learn the existing structure, and enforce consistency by having the AI act as an intelligent auditor of pipeline configuration. It is critically important to note that while the API can function with no authentication in certain development or testing configurations, this is a significant security risk in any production or shared environment. Exposing administrative endpoints without authentication is strongly discouraged. Developers must implement and enforce robust authentication and authorization mechanisms before deploying this API or its MCP server integration. Best practices include employing one of Airflow's supported authentication backends, such as Kerberos, OAuth2, or username/password with HTTPS encryption, and strictly applying the principle of least privilege. Service accounts used by the AI assistant should be granted only the minimum permissions necessary for their intended workflow—for example, read-only access to connection metadata and DAG listings, but no ability to modify production connections or delete DAGs. Comprehensive audit logging of all API calls is essential for security monitoring and compliance. Configuration should be managed securely, with credentials stored in a secrets manager rather than in plain text, and network access to the API endpoints should be restricted to trusted internal IP ranges.

GET /configGET /connectionsPOST /connections+7 more

Apache Airflow Core API

46Auto
Finance & PaymentsNo Auth

The Airflow API (Stable) is the official, production-ready REST interface for Apache Airflow, the industry-standard open-source platform for orchestrating complex computational workflows and data pipelines. Developed and maintained by the Apache Software Foundation, this API provides comprehensive programmatic control over the core orchestration engine, enabling users to manage, monitor, and interact with Directed Acyclic Graphs (DAGs), their associated tasks, connections, variables, and the underlying scheduler and executor configurations. Its primary value lies in its ability to move Airflow management from the web UI and command line into automated, scriptable, and integrable workflows. This is critical for enterprise environments where Airflow is a central component of the data infrastructure, facilitating use cases such as programmatically triggering and managing data ingestion jobs, dynamically adjusting pipeline parameters based on external events, implementing GitOps practices for pipeline definitions, and integrating pipeline orchestration with broader MLOps, FinOps, or CI/CD toolchains. When this API is exposed as a tool via a Model Context Protocol (MCP) server to an AI coding assistant, it unlocks a transformative paradigm where natural language commands can directly manipulate and query the orchestration layer. The AI agent gains the ability to understand the operational state of data pipelines and act upon them, effectively acting as a bridge between human intent and system action. The value is immense for developer productivity and operational resilience. An AI assistant can instantly retrieve system configurations or connection details without the developer leaving their IDE, diagnose pipeline issues by querying DAG warnings or connection statuses, and even propose or enact fixes by updating connections. This integration turns the AI from a passive code generator into an active, context-aware participant in data operations, capable of performing real-time impact analysis by understanding the DAG structure and dependencies before suggesting changes. In practice, a developer could instruct the AI agent to perform a wide range of dynamic tasks. For instance, one could ask, "Retrieve all Airflow connections and verify they match the latest environment variables from our Vault server," prompting the AI to use GET /connections, compare results, and then use PATCH /connections/{connection_id} to update mismatches. Another command could be, "List all DAGs with recent warnings and create a Jira ticket for each one with the relevant details," where the AI would query GET /dags and GET /dagWarnings, then synthesize the information into ticket descriptions. A more complex workflow might involve, "For the 'data_warehouse' DAG, fetch its source code, identify all hardcoded database names, and generate a refactoring PR to parameterize them," which would leverage GET /dagSources/{file_token} to analyze the code. The AI could also automate maintenance tasks like, "Test all connections marked as critical and report any failures to our Slack monitoring channel," orchestrating calls to GET /connections/{connection_id} and POST /connections/test in sequence. Given the API's current configuration of "None" for authentication, which implies it may be operating in a trusted, internal network segment or relying on external network-level security, developers must be exceptionally diligent. Security best practices are paramount. This API should never be exposed directly to the public internet. Its use should be strictly confined to private networks or secured behind a robust API gateway that enforces its own authentication and authorization layer (e.g., OAuth2, API keys, mutual TLS). Within the MCP integration, the principle of least privilege must be strictly enforced; the AI agent should be configured with the minimal set of API permissions required for its tasks. Developers should implement comprehensive logging and auditing for all API calls made through the MCP server to maintain a clear trail of actions. Configuration should include rate limiting to prevent runaway scripts from impacting Airflow's stability, and all sensitive data, such as connection passwords returned by the API, must be handled with extreme care, ideally avoided in logs and transient memory, and encrypted in transit even within the internal network.

GET /configGET /connectionsPOST /connections+7 more

Apacta

34Auto
Finance & PaymentsNo Auth

The Apacta API is a specialized, industry-focused digital backbone designed to serve the operational needs of tradespeople, contractors, and small-to-medium construction or service businesses. Developed by the Danish company Apacta, this API provides a programmatic interface to their core cloud-based platform, which digitizes traditional field workflows. Its primary function is to centralize and streamline critical on-site activities, specifically the registration of working hours (time tracking and clocking), the logging of material consumption and inventory usage per job, and the execution of structured quality assurance (QA) checklists. Typical use cases include enabling foremen to clock crews in and out via mobile devices, automatically deducting used materials from a project's inventory in real-time, and ensuring compliance by having technicians complete digital inspection forms with photo evidence. For enterprises, it transforms paper-based processes into auditable digital trails, improving project cost accuracy, payroll efficiency, and regulatory compliance. For the individual tradesperson, it reduces administrative overhead, allowing them to focus on their craft while ensuring all billable hours and materials are meticulously recorded for invoicing. Exposing the Apacta API as a set of tools within an AI coding assistant via the Model Context Protocol (MCP) unlocks significant productivity and automation potential for developers building solutions on or integrating with the Apacta platform. Instead of manually querying dashboards or writing boilerplate integration code, a developer can instruct their AI agent to directly interact with the live operational data. The AI gains real-time awareness of project statuses, labor allocation, and material stocks. This context allows the assistant to intelligently suggest optimizations, automate routine reporting, and proactively flag potential issues. For instance, it can help a developer quickly prototype a custom analytics dashboard by having the AI fetch and structure time log data across multiple job sites, or it can generate the scaffolding for a notification system that alerts when material usage on a project deviates from its budgeted estimate. The value lies in drastically accelerating the development cycle for custom integrations and internal tools, as the AI handles the data retrieval, formatting, and basic logic, freeing the developer to focus on higher-level architecture and business rules. Through this MCP server integration, a developer can command the AI agent to perform a variety of dynamic, context-rich workflow tasks. For example, a manager could instruct, "AI, query all clocking records for this week for the Copenhagen site and generate a summary of hours worked versus hours scheduled in a table," enabling instant labor variance analysis. To automate project cleanup, one could command, "AI, identify all activities associated with the 'Retrofit Project' that have been inactive for over 90 days and prepare a draft bulk delete request for my review," streamlining database hygiene. For real-time inventory management, a developer could ask, "AI, get the current usage of 'Type X Cement' across all active projects and update our central procurement sheet with the total depletion, then alert me if any site is below safety stock." In quality assurance, a natural language instruction like, "AI, pull the latest five QA checklists for the electrical inspection activity and highlight any items that failed or had notes attached," would allow for rapid compliance auditing and issue tracking, transforming passive data into actionable insights. While the current authentication description indicates a method based on URL query parameters, it is critical for developers to treat this with extreme caution. Sending credentials in the URL can lead to exposure in server logs, browser history, and referrer headers. The foremost security best practice is to ensure all API communication occurs over HTTPS, as specified, to encrypt data in transit. For production use, it is strongly recommended to advocate for or implement more robust authentication mechanisms supported by the underlying platform, such as OAuth 2.0 bearer tokens or API keys included in the request headers. Developers should strictly adhere to the principle of least privilege, requesting and configuring only the specific API scopes (e.g., read-only access to clocking records) necessary for the AI agent's function. Configuration should be managed via secure environment variables, never hardcoded, and any AI tool integration should be sandboxed and tested thoroughly to prevent unintended data modification or deletion. Audit logs should be reviewed regularly to monitor API usage patterns for anomalous activity.

GET /activitiesPOST /activitiesDELETE /activities/bulkDelete+7 more

ATS API

40Auto
Finance & PaymentsNo Auth

The Applicant Tracking System (ATS) API, provided by Apideck as part of its unified API platform, serves as a standardized, RESTful gateway to interact with core recruitment and talent acquisition data. This API abstracts the complexities of various underlying ATS systems, offering a single, consistent interface to manage two fundamental recruitment entities: applicants and jobs. Developers can leverage endpoints to create new candidate profiles, retrieve comprehensive lists or specific details of job applicants, and access detailed information about open positions. Its primary use case lies within the HR technology ecosystem, enabling enterprises to build custom recruitment dashboards, automate candidate data synchronization between disparate systems (like an ATS and a CRM), develop specialized recruitment analytics tools, or create custom career portal functionalities that require direct backend integration. For consumer-facing applications, it could power a job application status tracker that aggregates data from multiple employer portals a candidate has applied to. When exposed as tools via the Model Context Protocol (MCP) to an AI coding assistant, this API gains significant contextual power. The AI agent can move beyond generic code generation to perform real-time, data-aware operations. It can directly query the live ATS data to understand current recruitment landscapes—such as listing all applicants for a specific role or fetching job details for a particular opening—and use that information to inform its suggestions. This transforms the assistant from a passive code writer into an active development partner capable of bridging the gap between static code and dynamic, real-world data structures, thereby accelerating the development of integrations, data migration scripts, or custom reporting tools that interact with recruitment data. In a practical workflow, a developer could instruct the AI agent to perform a series of dynamic tasks. For example, they could request, "List all applicants for the job with ID 'job-123' and summarize their application dates." The AI, using the MCP server, would execute a GET request to `/ats/jobs/job-123`, understand the context, then make a correlated GET request to `/ats/applicants` with the appropriate filter, and present a summarized, human-readable output. Another workflow could be: "Create a new applicant record in our ATS for Jane Doe, a software engineer, using the mock API for testing." The AI would then formulate and execute the proper POST request to `/ats/applicants` with the structured data, providing the developer with immediate confirmation or error feedback. This enables rapid prototyping and iterative development directly within the AI-assisted environment. Critical attention must be paid to authentication and security. The base API specification lists no authentication method, which is a significant security risk for production use. It is imperative that developers implement an authentication layer, such as API key validation or OAuth 2.0, typically within a custom MCP server wrapper or API proxy before exposing these endpoints. The principle of least privilege should be strictly followed; the AI assistant should be configured with credentials that only permit read access to applicant and job data if its sole function is querying, unless write operations are explicitly required. Furthermore, all API calls should be made over HTTPS, and sensitive data from responses should be handled carefully, avoiding unnecessary logging or exposure. Developers must consult Apideck's documentation for any provider-specific authentication requirements, as the platform likely mandates a valid API key in the request headers for all calls to the production base URL.

GET /ats/applicantsPOST /ats/applicantsGET /ats/applicants/..+2 more

Business Registries

34Auto
Finance & PaymentsNo Auth

The Business Registries API is a robust, HTTP-based RESTful service designed to provide programmatic access to comprehensive business registration and classification data. Built on predictable resource URIs and documented in the OpenAPI specification, it offers a suite of endpoints that allow users to retrieve detailed information such as business names, address types, lifecycle states for business names and licenses, electronic address types, gender classifications, legal entity types, name directions, and name prefixes. This API is typically provided by government agencies, regulatory bodies, or specialized data aggregators that maintain official business registries, ensuring data accuracy and compliance with local and international standards. Core capabilities include querying for specific business entities, validating classification codes, and accessing up-to-date registry information, which are essential for various enterprise use cases. Common applications include automating compliance verification processes, enhancing market research with real-time business data, integrating authoritative information into customer relationship management (CRM) and enterprise resource planning (ERP) systems, and supporting financial due diligence or risk assessment workflows, making it a critical tool for businesses operating in regulated environments or requiring verified entity data. Exposing the Business Registries API as tools to AI coding assistants through the Model Context Protocol (MCP) unlocks significant value for developers and organizations. MCP enables AI models like Claude Desktop, Cursor, or Cline to interact seamlessly with external APIs, turning static code generation into dynamic, context-aware assistance. By leveraging this integration, developers can instruct AI agents to perform intelligent tasks such as auto-completing API calls based on schema definitions, validating data structures against the API's OpenAPI spec, or generating boilerplate code for common interactions like fetching business classifications. This not only accelerates development cycles but also reduces errors by ensuring that generated code adheres to the API's specifications and best practices. Furthermore, AI assistants can analyze response data to provide insights, such as identifying trends in business registrations or flagging anomalies in classification patterns, thereby transforming the API from a mere data source into a proactive tool for decision support, code optimization, and real-time troubleshooting during development. In practical workflows, developers can harness the MCP server to automate a range of dynamic tasks using natural language instructions, enhancing productivity and accuracy. For example, a developer might command the AI agent to "query all business names in the registry that have an active lifecycle state and are classified under specific legal entity types to generate a compliance report," enabling rapid data retrieval for auditing or regulatory submissions. Another scenario involves instructing the AI to "validate a list of electronic address types against the API's classifications to ensure consistency in a CRM system," which can be crucial for maintaining data integrity in applications that process business contact information across regions. Similarly, the AI can be directed to "retrieve and compare license types for different jurisdictions to automate the setup of compliance checks in a multi-market application," facilitating scalable development by dynamically adapting to regulatory variations. These workflows demonstrate how the integration empowers developers to offload repetitive tasks to the AI, allowing them to focus on higher-level design, innovation, and strategic problem-solving. Regarding security and configuration, although the Business Registries API currently operates without authentication, it is imperative to implement robust security measures to protect sensitive business data and ensure responsible usage. Developers setting up the MCP server should adhere to the principle of least privilege by granting only the necessary permissions to AI tools and users, minimizing potential exposure to unauthorized access or data breaches. Best practices include enforcing HTTPS for all communications to safeguard data in transit, implementing rate limiting to prevent abuse and ensure API availability, and validating all inputs to protect against injection attacks or malformed requests that could compromise system integrity. Configuration guidelines should involve setting up secure endpoints, monitoring API usage for anomalies through logging and analytics, and regularly updating access controls to reflect changing needs. Even in the absence of built-in authentication, it is advisable to layer additional security mechanisms such as API keys or OAuth tokens at the application level, conduct periodic security audits, and maintain comprehensive logs for auditing purposes, thereby enhancing the overall security posture of the integration and complying with data protection regulations.

GET /business-namesGET /classifications/address-typesGET /classifications/business-name-lifecycle-states+7 more

Connector API

46Auto
Finance & PaymentsNo Auth

The Connector API, provided by Apideck as part of its Unified API platform, serves as a critical metadata and discovery layer for enterprise software integration. It does not handle transactional data or CRUD operations for business records itself; instead, it exposes a comprehensive catalog of the available API connectors within the Apideck ecosystem and their technical specifications. Developers can use it to programmatically discover which third-party services (like Salesforce, HubSpot, or QuickBooks) are supported, retrieve detailed schemas for the data resources each service exposes (such as contacts, invoices, or tickets), and understand the level of API coverage for each resource—meaning which standard operations (like read, create, update) are implemented and stable. The primary use case is for platform engineers, integration developers, and product teams who need to dynamically build or configure integration workflows, generate documentation, or validate which connected services meet their application’s requirements before initiating data flows. When exposed as a tool via the Model Context Protocol (MCP) to an AI coding assistant like Claude Desktop or Cursor, the Connector API becomes an exceptionally powerful context source. It transforms the AI from a generic code generator into an integration-aware development partner. Instead of the developer manually looking up API docs, the AI can directly query this API to answer critical questions about the integration landscape. This provides immediate, actionable context right at the point of code generation. The AI can leverage this real-time metadata to write more accurate, compatible integration code, avoiding assumptions about data models or endpoint structures. It effectively gives the AI a live, machine-readable version of the Apideck documentation and developer portal, enabling it to function as a subject matter expert on the available connectors and their capabilities. In a practical workflow, a developer could instruct the AI agent to perform several dynamic tasks to accelerate development. For instance, an instruction like “List all available CRM connectors and identify which ones support a standard ‘companies’ resource with update capabilities” would prompt the AI to first call the `GET /connector/connectors` and then use the `GET /connector/connectors/{id}/resources/{resource_id}` endpoint to inspect the resources of each candidate, synthesizing a comparison for the developer. Another powerful command would be: “Generate a TypeScript interface for the ‘contact’ resource as defined in the HubSpot connector.” The AI would use the connector’s ID to fetch its resource schema via `GET /connector/connectors/{id}/resources/{resource_id}` and then generate precise, schema-accurate type definitions. This eliminates guesswork and ensures the generated code aligns perfectly with the Apideck connector’s data model, drastically reducing iteration cycles and errors during integration development. Regarding configuration and security, while this specific API endpoint currently operates with no mandatory authentication for public discovery purposes, it is critical to adhere to best practices. Developers should treat the metadata it provides as sensitive, as it outlines the exact surface area of potential integrations. In a production environment, it is advisable to restrict direct calls to this API from public-facing networks and instead use it within a secure backend service or during a controlled CI/CD pipeline phase. If the API evolves to require authentication, the principle of least privilege must be applied, granting credentials only the specific read-only permissions needed to list connectors and their resources. Developers should also implement client-side caching strategies for responses, as the list of connectors and their schemas does not change frequently, to minimize redundant network calls and ensure responsive performance within their tools and AI-driven workflows.

GET /connector/apisGET /connector/apis/..GET /connector/apis/..+5 more

CRM API

46Auto
Finance & PaymentsNo Auth

The CRM API, provided by Apideck as part of their Unified API platform, serves as a powerful and standardized gateway to interact with core customer relationship management data. Its primary function is to abstract the complexity of connecting to various underlying CRM platforms (like Salesforce, HubSpot, or Zoho) through a single, consistent interface. This API enables full lifecycle management of fundamental business objects, specifically activities (such as tasks, events, or calls) and companies (organizational accounts). Core capabilities include creating new records, retrieving detailed lists or individual items, updating specific fields via partial modifications, and deleting outdated entries. Typical enterprise use cases involve synchronizing data between a CRM and internal systems, automating the logging of sales or support interactions, generating consolidated reports on business activity, or building custom applications that interact with a company's customer data. For consumer-facing scenarios, it might power an internal tool that provides support agents with a unified view of all client interactions, eliminating the need to switch between multiple CRM platforms. When this CRM API is exposed as tools to an AI coding assistant via the Model Context Protocol (MCP), its value is dramatically amplified, transforming a standard API into a dynamic, context-aware component of the development environment. The AI agent gains the ability to not just understand code, but to directly and securely interact with live business data. This turns the assistant from a code generator into an active participant in building and debugging applications that operate on real-world CRM information. For instance, a developer can instruct the AI to "list all activities for Acme Corp from the past week to verify my data sync logic," and the agent can execute the GET /crm/companies and GET /crm/activities endpoints, parse the results, and present them within the development context. This immediate access to live data eliminates the friction of context-switching to separate API testing tools, accelerates debugging of data-dependent features, and allows for more sophisticated, data-informed suggestions and code completions from the AI. In practice, the integration enables a suite of powerful, automated workflows. A developer can ask the AI agent to perform complex data operations using natural language commands. For example, one could instruct, "AI agent, query all companies in the 'Prospect' stage and for each one, create a new follow-up activity scheduled for next Monday." The AI would sequentially execute GET /crm/companies with the appropriate filter, then for each returned company ID, execute POST /crm/activities with the structured payload. Similarly, an instruction like "Update the status of all activities assigned to Jane Doe to 'Complete' that are older than 30 days" would prompt the AI to first GET /crm/activities with the relevant filters, then use the returned activity IDs to make a series of PATCH /crm/activities/{id} calls. These capabilities automate tedious, repetitive data management tasks directly from the IDE, allowing the developer to focus on architectural and business logic concerns. While the provided base URL currently indicates no authentication method is required for public documentation or initial access, this is a critical point requiring developer attention. Production use of the API will absolutely require secure authentication, likely via API keys or OAuth 2.0 tokens passed in request headers. Developers must treat these credentials with the highest security, never hardcoding them in client-side code or public repositories. Following the principle of least privilege is essential; ensure the API token used for the MCP server integration has only the necessary permissions (e.g., read-only access if the AI agent's tasks are limited to querying data). For initial development and testing, the provided Mock API endpoint is invaluable. It allows for safe experimentation and validation of all CRUD operations without affecting real production data. Configuration should involve securely storing the live API credentials in environment variables or a secrets manager and configuring the MCP server to use them, while directing the AI assistant's initial exploratory work to the mock environment.

GET /crm/activitiesPOST /crm/activitiesGET /crm/activities/..+7 more

Customer Support

40Auto
Finance & PaymentsNo Auth

The Customer Support API, provided by Apideck through their Unified API platform, serves as a central hub for accessing and managing customer support data across integrated service platforms. This RESTful API enables developers to perform comprehensive CRUD (Create, Read, Update, Delete) operations on customer records, which is foundational for any application aiming to centralize, automate, or enhance customer service workflows. It is designed for enterprise and SaaS businesses that need to build or integrate customer support tools, create unified customer profiles from multiple data sources, or develop automated support ticketing systems. By exposing a standardized interface for customer data, it eliminates the complexity of connecting to disparate support platforms individually, allowing businesses to maintain a single source of truth for customer interactions and information. When this API is exposed as a set of tools via the Model Context Protocol (MCP) to an AI coding assistant such as Claude Desktop, Cursor, or Cline, its value transforms significantly for developer productivity and capability. The AI agent transcends being a code generator and becomes an operational assistant with real-time data awareness. Instead of just writing static code to fetch customer data, the developer can instruct the AI to live-query the API to understand the exact schema, test responses with real data, or verify business logic against current records. For instance, the AI can be asked to "retrieve customer #123 and describe the structure of their recent support tickets," allowing the developer to design a UI component based on actual data shapes. This integration turns the API documentation into a dynamic, executable resource, drastically reducing context-switching and accelerating development cycles by embedding data manipulation directly into the conversational coding environment. Practical workflows enabled by this MCP integration are numerous and powerful. A developer can instruct an AI agent to "list all customers created in the last 7 days to generate a new customer onboarding report," or to "update customer #456's priority status to 'high' based on the latest ticket sentiment analysis." The AI can automate multi-step processes, such as "query all customers with open support tickets, analyze their ticket volumes, and create a new customer record for each one that has exceeded the service level agreement threshold." Furthermore, it can facilitate rapid prototyping by asking the agent to "create a new test customer with the name 'API Test' and then immediately delete it to verify the create-delete workflow." These interactions allow developers to offload repetitive API calls, data inspection tasks, and basic automation logic to the AI assistant, freeing them to focus on architectural decisions and complex feature implementation. For configuration, while the provided specification lists no authentication method, production use will invariably require robust security practices. Developers should implement and mandate OAuth 2.0 or API key authentication with the principle of least privilege, ensuring the credentials used by the MCP server only possess the scopes necessary for its intended function (e.g., read-only access for a reporting tool). It is critical to store all secrets and access tokens securely using environment variables or a dedicated secrets manager, never in client-side code. Security best practices also include configuring strict rate limiting to prevent abuse, validating and sanitizing all incoming data, and ensuring all API calls use HTTPS. Developers should leverage the provided mock API endpoint during development and testing to avoid unintended mutations to production data, and always validate the MCP tool's responses before using them in critical application logic.

GET /customer-support/customersPOST /customer-support/customersGET /customer-support/customers/..+2 more

eBay Account API

34Auto
Finance & PaymentsNo Auth

The Account API, provided by eBay, is a comprehensive backend service designed to empower marketplace sellers with programmatic control over the foundational aspects of their commercial presence on the platform. Its core capabilities revolve around the management and configuration of seller accounts, enabling the creation, retrieval, and modification of critical business policies that govern transactional behavior. Specifically, it allows for the full lifecycle management of eBay’s core business policies—fulfillment and payment—as well as seller-defined custom policies that can be used to provide additional information to buyers. Beyond policy management, the API facilitates the administrative task of opting a seller account in or out of various eBay seller programs and provides endpoints for configuring sales tax tables, a crucial function for sellers operating across multiple jurisdictions. Typical enterprise use cases include multi-channel retailers automating their eBay store setup during onboarding, platform administrators managing policies for a portfolio of seller accounts, and e-commerce platforms integrating eBay as a sales channel by programmatically ensuring consistent operational policies across all connected services. Exposing this API as tools within an AI coding assistant via the Model Context Protocol (MCP) transforms static policy management into a dynamic, intelligent, and conversational operation. The value lies in shifting from manual UI navigation or rigid scripting to an intent-driven interface where a developer can articulate a business requirement in natural language. An AI agent, equipped with MCP tools corresponding to each API endpoint, becomes a powerful force multiplier. It can interpret high-level directives, reason about the required sequence of API calls, handle parameter formulation, and execute complex, multi-step workflows. This integration drastically lowers the barrier for developers to interact with eBay’s backend systems, reduces context switching between documentation and IDE, and minimizes errors by abstracting away complex request structures, thereby accelerating development cycles for applications that need to manage eBay seller configurations. Practical workflow examples illustrate this transformative potential. A developer could instruct the AI agent to: “Query my current advertising eligibility and list the custom policies named ‘Eco-Friendly’ and ‘Premium Support’,” which would trigger a sequence calling GET /advertising_eligibility followed by GET /custom_policy/ with appropriate filtering. For policy creation and updates, a natural language command such as “Create a new fulfillment policy for expedited shipping to the EU, then apply it to the custom policy with ID 56789” would guide the AI agent through a POST to /fulfillment_policy/ and a subsequent PUT to /custom_policy/{custom_policy_id} to link them. Another powerful use case is dynamic configuration synchronization: “Analyze my latest fulfillment policy named ‘Holiday Hours’ and generate a custom policy that mirrors its key parameters for display in my storefront,” would prompt the AI to fetch details via GET /fulfillment_policy/get_by_policy_name, interpret the data, and then POST to /custom_policy/ to create the corresponding new policy. Developers integrating this MCP server must treat authentication and security with the highest priority, despite any placeholder indications. All calls to the eBay Account API require authentication, typically via OAuth 2.0, to ensure secure, authorized access to a seller’s sensitive account settings. Security best practices dictate the implementation of the principle of least privilege: the access tokens or credentials used by the AI coding assistant should be scoped only to the specific API endpoints and actions (e.g., read-only for fulfillment policies) required for the intended workflow, avoiding broad, read-write access to the entire account. Configuration should involve storing credentials securely in environment variables or a secret management service, never in plaintext. When setting up the MCP server, developers must ensure that token refresh mechanisms are robust and that any sensitive data exchanged between the AI tool and the API is handled in a secure, encrypted context, recognizing that the assistant will be interacting directly with the controls of a live commercial account.

GET /advertising_eligibilityGET /custom_policy/POST /custom_policy/+7 more
Transparency & Trust

How Finance & Payments Listings are Evaluated

All Finance Payments listings are continuously audited under MCPBridge's 4-tier verification protocol covering schema compliance, token isolation, and repository maintenance.

Protocol & Schema Compliance35%

Strict validation of tool names, JSON schema parameter typing, and standard error responses.

  • JSON-RPC 2.0 stdio compliance
  • Typed parameters with descriptions
  • Deterministic error codes
Credential Safety & Secrets Handling30%

Verification that sensitive credentials remain local to the client environment without telemetry leaks.

  • Zero third-party telemetry
  • Environment variable secret injection
  • Read-only default modes
Maintenance & Repository Health20%

Active commit frequency, dependency vulnerability auditing, and issue response times.

  • Release within past 90 days
  • Zero critical CVEs in dependencies
  • Open source OSI license
Setup Ergonomics & Documentation15%

Availability of verified copy-paste configurations for Claude Desktop, Cursor, and VS Code.

  • One-click config snippet
  • Documented environment variables
  • Clear error troubleshooting guide
Audit Cadence: Automated checks run weekly; manual verifications updated every 30 days.
Read MCPBridge Complete 4-Tier Editorial Methodology →

Browse by Category

Explore MCP server integrations organized by platform and use case.

Developer Tools Integrations (15+)
AI & ML Integrations (15+)
Data & Analytics Integrations (15+)
Cloud Infrastructure Integrations (15+)
Communication Integrations (15+)
Finance & Payments Integrations (15+)
Design & Creative Integrations (15+)
Productivity Integrations (15+)
Databases Integrations (15+)
Security Integrations (15+)
Browser Automation Integrations (6+)
Automation Integrations (6+)