Use the Payabli MCP server

Learn how to use the Payabli MCP server to integrate with AI workflows
Applies to:Developers

The Payabli MCP (Model Context Protocol) server connects your AI agents to Payabli’s documentation and SDK references. Set up the Payabli MCP server in your IDE or AI chat to get help with your Payabli integration.

For more information about the Model Context Protocol, visit the MCP docs.

If your AI agent supports MCP, you can set up the Payabli MCP Server to give your AI agent knowledge about Payabli’s APIs and SDK. The Payabli MCP server lets you:

  • Get instant answers to questions about Payabli APIs, features, and implementation
  • Search documentation without leaving your development environment
  • Find code examples and best practices for common use cases
  • Troubleshoot issues with guidance from our documentation and SDK references
  • Write code that integrates your application with Payabli

Installation

To configure the Payabli MCP server, select your IDE or AI chat provider and follow the instructions.

  1. Open Cursor and open the .cursor directory in your project root. If it doesn’t exist, create it. This directory contains Cursor’s configuration files for your project.

  2. Open the mcp.json file in the .cursor directory. If it doesn’t exist, create it. This file contains all MCP server configurations for your project.

  3. Add the following configuration to your mcp.json file:

    mcp.json
    1{
    2 "mcpServers": {
    3 "inkeepMcp": {
    4 "url": "https://mcp.inkeep.com/payabli/mcp"
    5 }
    6 }
    7}
  4. Save the configuration file.

  5. Restart Cursor.

Windsurf uses npm to access the Payabli MCP server. You must have Node.js installed on your system. See Node.js installation instructions for more information.

  1. Open Windsurf.

  2. Navigate to the Cascade assistant sidebar.

  3. Click the hammer (MCP) icon to access MCP settings.

  4. Click Configure > View raw config.

  5. Open the configuration file ~/.codeium/windsurf/mcp_config.json. This file contains Windsurf’s global configuration for MCP servers.

  6. Add the following configuration to your mcp_config.json file:

    mcp_config.json
    1{
    2 "mcpServers": {
    3 "inkeepMcp": {
    4 "command": "npx",
    5 "args": ["-y", "mcp-remote", "https://mcp.inkeep.com/payabli/mcp"]
    6 }
    7 }
    8}
  7. Save the configuration file.

  8. Click the Refresh button in the Cascade sidebar next to “available MCP servers”.

Claude Desktop uses npm to access the Payabli MCP server. You must have Node.js installed on your system. See Node.js installation instructions for more information.

  1. Open Claude Desktop.

  2. Navigate to File > Settings on Windows or Settings on MacOS.

  3. Navigate to the Developer tab.

  4. Click Edit Config.

  5. Open the configuration file claude_desktop_config.json. This file manages all MCP servers for Claude Desktop.

  6. Add the following configuration to your claude_desktop_config.json file:

    claude_desktop_config.json
    1{
    2 "mcpServers": {
    3 "inkeepMcp": {
    4 "command": "npx",
    5 "args": ["-y", "mcp-remote", "https://mcp.inkeep.com/payabli/mcp"]
    6 }
    7 }
    8}
  7. Save the configuration file.

  8. Restart Claude Desktop.

Usage

The Payabli MCP provides the following tools:

  • search-payabli-docs - Searches Payabli’s official documentation
  • ask-question-about-payabli - Searches Payabli’s SDK GitHub repository and other resources outside of the documentation

Your AI agent automatically selects the appropriate tool based on your question.