drio
Open app

PayAI MCP Server

Source

Model Context Protocol server for the PayAI network! Plug PayAI into Claude Desktop, Cursor, or your favorite MCP Host!

Catalog onlyCatalog onlySTDIO

Overview

The payai-mcp-server is a Model Context Protocol server designed for the PayAI network, allowing integration with various MCP hosts like Claude Desktop and Cursor.

To use the payai-mcp-server, set it up in your development environment and connect it to your preferred MCP host to facilitate communication and data exchange.

  • Seamless integration with PayAI network - Compatibility with multiple MCP hosts - Supports real-time data processing and communication
  1. Integrating AI models with desktop applications.
  2. Facilitating communication between different AI services.
  3. Enhancing data processing capabilities in AI applications.

Add to your AI client

Use these steps to connect PayAI MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "payai-mcp-server-notorious-d-e-v": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-payai-mcp-server-notorious-d-e-v"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "payai-mcp-server-notorious-d-e-v": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-payai-mcp-server-notorious-d-e-v"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "payai-mcp-server-notorious-d-e-v": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-payai-mcp-server-notorious-d-e-v"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "payai-mcp-server-notorious-d-e-v": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-payai-mcp-server-notorious-d-e-v"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "payai-mcp-server-notorious-d-e-v": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-payai-mcp-server-notorious-d-e-v"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "payai-mcp-server-notorious-d-e-v": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-payai-mcp-server-notorious-d-e-v"
      ]
    }
  }
}

FAQ

What is the purpose of the payai-mcp-server?

It serves as a bridge for integrating the PayAI network with various applications and services.

Is payai-mcp-server open source?

Yes! It is available under the MIT license.

How can I contribute to the payai-mcp-server?

You can contribute by submitting issues or pull requests on the GitHub repository.