PGYER MCP Server

MCP Server for PGYER platform, supports uploading, querying apps, etc.

Local serverstdio

What is the PGYER MCP server?

Pgyer mcp server lets Claude, Cursor and other MCP clients work with PGYER directly. MCP Server for PGYER platform, supports uploading, querying apps, etc.

What PGYER does

  1. upload-app:上传应用到 PGYER 平台 2. list-my-apps:查询自己上传的 App 列表 3. get-app-info-by-shortcut:通过短链接(App shortcut)查询 App 信息

Tools it exposes

Once connected, the assistant can call these 3 tools directly:

  • upload — app:上传应用(ipa/apk)到 PGYER 平台,支持多种上传参数
  • list-my — apps:查询当前账号下已上传的应用列表,支持分页
  • get-app-info-by — shortcut:通过应用短链接(shortcut)查询详细信息

Installing the pgyer mcp server

The server is distributed via npm as pgyer-mcp-server, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply one environment variable: PGYER_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. PGYER sits in that group, and the shape of its toolset — upload, list-my, get-app-info-by — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the pgyer mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
uploadapp:上传应用(ipa/apk)到 PGYER 平台,支持多种上传参数
list-myapps:查询当前账号下已上传的应用列表,支持分页
get-app-info-byshortcut:通过应用短链接(shortcut)查询详细信息

How to install the PGYER MCP server

{
  "mcpServers": {
    "pgyer": {
      "command": "npx",
      "args": ["-y", "pgyer-mcp-server"],
      "env": {
        "PGYER_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
PGYER_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use PGYER to upload.
  • Use PGYER to list-my.
  • Use PGYER to get-app-info-by.

Frequently asked questions

It connects PGYER to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (upload, list-my, get-app-info-by) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with PGYER directly.