Installation
1. Get credentials
Section titled “1. Get credentials”- Sign in to Apps
- Install the API feature
- Copy App ID and App Secret
2. Configure
Section titled “2. Configure”npx -y theapps-mcp configure3. Add Skills
Section titled “3. Add Skills”npx skills add jammaru/theapps-mcpClaude Desktop: upload theapps-mcp-skills.zip once. It includes every workflow skill.
4. Restart and verify
Section titled “4. Restart and verify”Restart Cursor, Claude Code, Codex, or a similar client, then use apps_auth_status.
Manual config
Section titled “Manual config”{ "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.