VS Code
Connect ASO++ to VS Code via the GitHub Copilot MCP or an extension like Cline.
VS Code supports MCP servers through GitHub Copilot's agent mode (VS Code 1.99+) or through third-party extensions like Cline.
Prerequisites
- VS Code 1.99 or later
- GitHub Copilot subscription with agent mode enabled
- An ASO++ API token — generate one here
Configuration
•
Open user settings (JSON)
Press
Cmd+Shift+P (macOS) or Ctrl+Shift+P (Windows/Linux) and run Preferences: Open User Settings (JSON).•
Add the MCP server
Add the following inside the JSON object:
{
"mcp": {
"servers": {
"asopp": {
"type": "http",
"url": "https://asopp.cc/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN_HERE"
}
}
}
}
}Replace YOUR_TOKEN_HERE with your actual token.
•
Reload VS Code
Press
Cmd+Shift+P and run Developer: Reload Window.•
Verify in Copilot agent mode
Open a Copilot chat, switch to Agent mode, and type:
Search for keywords related to "fitness tracker" in the US App StoreCopilot should call search_keywords and return results.
Troubleshooting
Related pages
- Tokens — Generate or revoke tokens
- MCP setup overview — Troubleshooting tips and other supported tools