Payotex MCP Server

The Payotex MCP server is a stateless Model Context Protocol server that exposes cross-chain swap quotes, deposit preparation, asset metadata, and tx-hash status lookups as typed tools, so AI agents (Claude Desktop, Cursor, custom MCP clients) can quote and track cross-chain swaps. It is a thin wrapper around public swap endpoints — no authentication, no per-user state, no database writes.

Install

npm install @payotex.com/mcp
# or run on demand
npx -y @payotex.com/mcp

The npm package is published as @payotex.com/mcp.

Transports

stdio (default)

Launched as a subprocess by the MCP client. Optionally reads PAYOTEX_BASE_URL and PAYOTEX_MIDGARD_URL from the environment.

Streamable HTTP

Hosted at https://payotex.com/mcp. Each request runs against a fresh stateless server instance — no authentication required.

Client configuration

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "payotex": {
      "command": "npx",
      "args": ["-y", "@payotex.com/mcp"],
      "env": { "PAYOTEX_BASE_URL": "https://payotex.com" }
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json (or the project-level .cursor/mcp.json):

{
  "mcpServers": {
    "payotex": {
      "command": "npx",
      "args": ["-y", "@payotex.com/mcp"]
    }
  }
}

Generic HTTP MCP client

{
  "mcpServers": {
    "payotex": {
      "url": "https://payotex.com/mcp"
    }
  }
}

Tool catalog (8 tools)