ASO tools for AI Agents
The official Sonar MCP server — drop App Store Optimization tools into Claude Desktop, Claude Code, Cursor, and Cline. Or hit the REST API directly from any agent framework.
Prepaid credits from $10 — no subscription, 50 free credits on signup.
Install the MCP server
Published on npm as @sonarapp/mcp. Runs over stdio. No global install needed.
Claude Desktop / Cursor
Add to your client's MCP config:
{
"mcpServers": {
"sonar": {
"command": "npx",
"args": ["-y", "@sonarapp/mcp"],
"env": {
"SONAR_API_KEY": "aso_..."
}
}
}
}Claude Code
One-liner from your shell:
claude mcp add sonar \
-e SONAR_API_KEY=aso_... \
-- npx -y @sonarapp/mcpRestart your session and the 13 sonar_* tools will be available.
Available Endpoints
Eight stateless endpoints covering app lookup, keyword research, reviews, ASO scoring, and revenue estimates. All are exposed as MCP tools, and callable directly via REST.
Or call the API directly
Standard REST API with Bearer token auth. Works with any HTTP client, agent framework, or automation tool — same data as the MCP server.
curl -H "Authorization: Bearer aso_your_api_key" \
"https://trysonar.app/api/v1/apps/lookup?store=ios&id=com.example.app"All responses return { "data": ... } on success or { "error": { "code": "...", "message": "..." } } on failure. See the full API reference or the OpenAPI 3.1 spec.
Or use it from your terminal
The companion @sonarapp/cli package exposes the same data via a sonar binary — perfect for shell scripts, CI/CD, and one-off lookups.
npm install -g @sonarapp/cli
sonar auth login
sonar keywords search "habit tracker" --store ios --tableCLI documentationGet API Access
Sign up, claim 50 free credits, and start querying ASO data in minutes. Top up with packs from $10 when you need more — no subscription required.
Get Started — 50 Free Credits