Pgyer Docs
CI/CD & Dev Tools

Pgyer MCP

Integrate the PGYER MCP Server: call Pgyer's upload and query capabilities from any AI client that speaks the Model Context Protocol.

The Model Context Protocol (MCP) is an open protocol that lets AI assistants call external tools via a standard interface. The PGYER MCP Server wraps Pgyer's app upload and query capabilities as MCP tools, callable in natural language from Claude Desktop, Claude Code, Codex, and other compatible clients.

Full features and parameters live in the GitHub repo: PGYER/pgyer-mcp-server.

Prerequisites

  • Node.js >= 18.0.0 (required by npx).
  • A Pgyer API Key: sign in to the Pgyer dashboard and grab it from Account Settings → API Info.

Client Configuration

Claude Desktop

Add the entry below to the config file and restart Claude Desktop:

claude_desktop_config.json
{
  "mcpServers": {
    "pgyer": {
      "command": "npx",
      "args": ["-y", "pgyer-mcp-server"],
      "env": {
        "PGYER_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Claude Code

claude mcp add --transport stdio pgyer --env PGYER_API_KEY=YOUR_API_KEY -- npx -y pgyer-mcp-server

Codex

codex mcp add pgyer --env PGYER_API_KEY=YOUR_API_KEY -- npx -y pgyer-mcp-server

Example

Once configured, describe the task in natural language. For example:

Example prompt

Upload /path/to/app.apk to Pgyer. Set the install method to password with password 123456.

The assistant will call the PGYER MCP Server, perform the upload, and return the download link.

On this page