Connect Claude, ChatGPT, Cursor, or Codex to your BoostOps data. Ask about revenue, installs, ad spend, reviews — your AI pulls live answers from all your app stores.
Pick where you want to query your game data. Each setup takes under 2 minutes.
Open Claude Desktop settings and find claude_desktop_config.json
Add the BoostOps MCP server:
{
"mcpServers": {
"boostops": {
"url": "https://api.boostops.io/mcp",
"headers": {
"Authorization": "Bearer bops_sk_your_key_here"
}
}
}
}
Restart Claude Desktop. You'll see BoostOps tools available. Try asking: "How are my games doing this week?"
Go to chat.openai.com → Explore GPTs → Create a new GPT
In the Configure tab, scroll to Actions → Create new action
Set Authentication: API Key, Auth Type: Bearer, Header: Authorization
Import the schema from URL:
In the Instructions box, paste the contents of ai.txt — this teaches the GPT the recommended workflows
Save and test. ChatGPT now calls BoostOps endpoints automatically when you ask about your games.
Fetch the OpenAPI spec and generate function definitions for the Agents SDK or Responses API:
# Download the spec curl -s https://api.boostops.io/openapi.json -o boostops.json # Or use it directly in your agent code import json, urllib.request spec = json.loads(urllib.request.urlopen( "https://api.boostops.io/openapi.json" ).read())
Convert endpoints to function-calling tool definitions, or use an OpenAPI-to-tools library. All endpoints use Bearer auth with the same bops_sk_... key.
Use ai.txt as the system prompt — it contains recommended workflows and error handling for agents.
Open Cursor Settings → MCP → Add new MCP server
Add to your .cursor/mcp.json:
{
"mcpServers": {
"boostops": {
"url": "https://api.boostops.io/mcp",
"headers": {
"Authorization": "Bearer bops_sk_your_key_here"
}
}
}
}
BoostOps tools appear in Cursor's agent mode. Ask it to check your game metrics while you code.
# List your apps curl -H "Authorization: Bearer bops_sk_your_key_here" \ https://api.boostops.io/api/v1/apps # Get revenue and installs for the last 7 days curl -H "Authorization: Bearer bops_sk_your_key_here" \ "https://api.boostops.io/api/v1/apps/123/metrics?days=7" # Studio-wide summary curl -H "Authorization: Bearer bops_sk_your_key_here" \ https://api.boostops.io/api/v1/portfolio/summary
Full endpoint reference and OpenAPI spec: see below
Once connected, just ask questions in plain English. Your AI calls the right tools automatically.
get_portfolio_summary
Your portfolio is up 12% in revenue this week ($4,230 vs $3,780 last week). DAU is stable at ~2.1k. Roulette Merge drove most of the growth with a 23% revenue increase, while Idle Farm dipped 5%.
get_app_health
Roulette Merge Android crash rate spiked to 2.1% yesterday (from 0.8% baseline). Likely related to the v2.3.1 release. iOS and Microsoft Store are clean. I'd recommend checking the Firebase Crashlytics dashboard for that build.
get_blended_roas
Blended ROAS is 2.4x this month — you're spending $1,820 and generating $4,370 in revenue. Apple Search Ads leads at 3.1x, Google Ads at 2.2x, and Unity Ads at 1.6x. Facebook is underperforming at 0.9x — you might want to cut that budget.
Just talk to your AI like you'd talk to an analyst. It figures out which tools to call.
Tell your AI what you want to achieve. It analyzes, creates, deploys, and monitors — all through BoostOps.
Analyzes current install sources — organic is 60%, Google Ads is 25%, Apple Search Ads is 10%, cross-promo is 5%. Google Ads CPI is $0.80 with 2.1x ROAS.
Creates a referral campaign — "Invite a friend, both get 500 coins" — targeting your highest-LTV players.
Generates tracked BoostLinks for the referral campaign with deep linking to the game's store page.
Deploys a cross-promo interstitial in Roulette Merge and Idle Farm, targeting users who play card games.
Sets up daily monitoring — will flag if install velocity changes, ROAS drops, or negative reviews spike.
Read → Analyze → Create → Deploy → Monitor. One prompt. One platform.
Standard HTTP JSON API. Works with curl, wget, httpie, Postman, or any HTTP client. No SDK required — just add your API key and go.
Full machine-readable API spec. Import into Postman, generate typed clients in Python/TypeScript/Go/Java, or browse endpoints interactively.
https://api.boostops.io/openapi.json
https://api.boostops.io/api/v1
| Method | Endpoint | Description | Scope |
|---|---|---|---|
| GET | /apps |
List all apps | read:apps |
| GET | /apps/:id/metrics |
App metrics (DAU, revenue, installs) | read:metrics |
| GET | /apps/:id/attribution |
Attribution data | read:attribution |
| GET | /apps/:id/anomalies |
Anomaly detection | read:metrics |
| GET | /portfolio/summary |
Studio-wide KPIs | read:portfolio |
Copy-paste these into your terminal. Replace bops_sk_your_key_here with your actual API key.
Use the OpenAPI spec to generate a client library in your language of choice.
BoostOps publishes standard discovery files so AI agents can automatically find and understand our API without manual configuration.
/ai.txt
AI agent instructions
Plain-text runbook for AI agents. Covers how to connect, recommended workflows for common tasks ("How are my games doing?", "What's my ROAS?", "Any problems?"), all available tools, API parameters, and error handling.
View file →/llms.txt
LLM-readable product overview
Markdown file describing what BoostOps is, who it's for, how it compares to competitors, pricing, and detailed API/MCP documentation. For agents that need product context.
View file →/.well-known/mcp/
MCP server discovery
Standard server-card.json (SEP-1649) and manifest (SEP-1960) files. MCP-aware clients can auto-discover the BoostOps MCP endpoint, supported capabilities, and auth requirements.
/openapi.json
OpenAPI 3.x specification
Full machine-readable API specification. Import into Postman/Insomnia, generate typed clients in any language with openapi-generator, or use as input for AI code generation.
View spec →<meta> tags
In-page signals for AI agents
HTML meta tags and comments on every page signal that a structured API exists. Agents reading the page source see <meta name="ai-capabilities"> and a plaintext comment directing them to the API before resorting to browser automation.
Create an API key and start querying your app data in under a minute.