Claude Code
Connect ASO++ to Claude Code using the MCP server configuration.
Claude Code is Anthropic's terminal-based AI coding agent. It supports MCP servers via a local configuration file.
Prerequisites
- Claude Code installed (
npm install -g @anthropic-ai/claude-code) - An ASO++ API token — generate one here
Configuration
•
Add the MCP server
Run the following command in your terminal to register ASO++ as an MCP server:
claude mcp add asopp \
--transport http \
--url https://asopp.cc/mcp \
--header "Authorization: Bearer YOUR_TOKEN_HERE"Replace YOUR_TOKEN_HERE with your actual token.
To add it scoped to a specific project rather than globally, run the command from inside the project directory and add
--scope project.•
Verify registration
Run:
claude mcp listYou should see asopp in the list with a connected status.
•
Test in a session
Start a Claude Code session:
claudeThen type:
Run an ASO audit for app 389801252 in the US marketClaude Code will call aso_audit and return the results.
Manual configuration
If you prefer to edit the config file directly, the global MCP configuration lives at ~/.claude/mcp_servers.json. Add:
{
"asopp": {
"type": "http",
"url": "https://asopp.cc/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN_HERE"
}
}
}Using environment variables
Store your token securely:
export ASO_TOKEN="your_token_here"
claude mcp add asopp \
--transport http \
--url https://asopp.cc/mcp \
--header "Authorization: Bearer $ASO_TOKEN"Add export ASO_TOKEN=... to your ~/.zshrc or ~/.bashrc to persist it across sessions.
Troubleshooting
Related pages
- Tokens — Generate or revoke tokens
- MCP setup overview — Troubleshooting tips and other supported tools