Skip to content

Installation

  1. Sign in to Apps
  2. Install the API feature
  3. Copy App ID and App Secret
Terminal window
npx -y theapps-mcp configure
Terminal window
npx skills add jammaru/theapps-mcp

Claude Desktop: upload theapps-mcp-skills.zip once. It includes every workflow skill.

Restart Cursor, Claude Code, Codex, or a similar client, then use apps_auth_status.

{
"mcpServers": {
"apps": {
"command": "npx",
"args": ["-y", "theapps-mcp@latest"],
"env": {
"APPS_APP_ID": "your-app-id",
"APPS_APP_SECRET": "your-app-secret"
}
}
}
}

theapps-mcp@latest means a client restart picks up the current npm release. Do not use github:jammaru/theapps-mcp.

On Windows, if npx fails to spawn, use "command": "cmd" and "args": ["/c", "npx", "-y", "theapps-mcp@latest"]. configure writes that shape on Windows.