The AppFollow AI Toolkit: analyst workflows for Claude Code and Codex

Go to the profile of Anatoly Sharifulin
Anatoly Sharifulin
The AppFollow AI Toolkit: analyst workflows for Claude Code and Codex

Table of Content:

  1. Why put an agent on this job
  2. The MCP server underneath
  3. What you can do with it
  4. What's in the skill pack
  5. How to install it
  6. FAQ

Most teams that work with AppFollow spend part of every week on the same small set of chores. Pull the latest reviews for an app, read through them to spot the complaints, check whether the rating is in turmoil or not. None of this is complicated. It just eats hours, and it comes out slightly different every time depending on who ran it and how they framed their questions.

The AppFollow AI Toolkit hands that work to an AI agent. It's an open-source plugin for Claude Code and Codex that connects to your AppFollow account and runs guided workflows for app store research and review analysis. You ask for what you want, in plain language or with a slash command, and the agent runs the workflow and gives you a report. No dashboard to build first, no query to write, no copying and pasting between tabs.

For context, AppFollow has been doing app reputation, review response, and ASO since 2014, and it covers the App Store, Google Play, the Mac App Store, Microsoft Store, HUAWEI AppGallery, Samsung Galaxy Store, Steam, and Trustpilot. The toolkit is a way to reach that data from inside the AI tools your team already has open.

Here’s how it works!

Why put an agent on this job

Agents like Claude and the ones inside Codex are good at a specific kind of task.

Take a fuzzy request ("what are people complaining about in our app lately"), break it into steps, call the right tools, and turn the raw output into something a person can read. That describes most of what review analysis and ASO checks are. The hard part was always the plumbing: knowing which data to pull, in what order, and how to summarize it once you have it. An agent that has been taught the steps handles that part for you.

There's also the consistency problem. When five people on a team each write their own prompt to analyze feedback, you get five different reports, and none of them line up month to month. A workflow fixes that. Everyone runs the same steps, the output has the same shape every time, and you can compare this week to last week without squinting.

The MCP server underneath

The toolkit talks to your data through the AppFollow MCP server, which we run at https://mcp.appfollow.io/mcp. MCP (Model Context Protocol) is the standard that lets an AI client use outside tools, and our server exposes around 30 of them: reviews and replies, ratings, rankings, keywords and ASO data, apps and collections, reports, and API credit info.

You sign in with the Google account tied to your AppFollow login. There are no API keys to copy around and no custom integration to stand up. Everything the agent can see is scoped to your own account and your existing permissions, and every call runs through the public API with normal credit accounting.

If you just want the raw tools, the MCP server works on its own with Claude, ChatGPT, Codex, Cursor, or any other MCP-capable client. The toolkit is the layer that turns those raw tools into finished workflows, and for now it targets Claude Code and Codex.

What you can do with it

Finding and tracking an app is the simple one. Ask the agent to find your app (or a competitor's) on the App Store or Google Play. It searches, checks the result against what you already track so you don't end up with duplicates, and, when your plan allows, writes it to AppFollow in a couple of turns. No manual search and paste.

The feedback report is the one most teams will reach for: point it at a single app, a whole collection, or a handful of apps you pick out of a collection. You get back KPIs with period-over-period deltas, rating and sentiment trends, callouts for anything that looks anomalous, and a ranked list of the top bugs and feature requests that users are mentioning. The idea is to see what people are unhappy about without reading every review yourself, which stops being realistic somewhere north of a few hundred reviews a week.

The ASO report covers the other side of the work. Ask for it and you get current positions for your tracked keywords (with trends and category-rank movement where there's enough history), keywords sorted by AppFollow's effectiveness score into ones worth chasing and ones to skip, an interactive loop to add the keywords you pick, and honest metadata suggestions for your title, subtitle, and keyword field that you can take straight into App Store Connect or Play Console. Keyword opportunities and ranking risk surface without the usual manual spreadsheet pass.

Every report comes out two way:

There's a self-contained HTML file you can open in a browser and share with whoever needs it, and there's a structured findings file. If you have another agent connected to Jira or Asana, it can read the findings and file the bugs and feature requests as issues, so the loop from "users are complaining about X" to "there's a ticket for X" can happen without anyone retyping anything.

What's in the skill pack

The toolkit is a small set of skills plus the connection glue, and it lives on GitHub under an Apache 2.0 license at https://github.com/AppFollow/appfollow-ai-toolkit. You can read every line, fork it, and open a pull request if you want to change how a workflow behaves.

Inside you'll find:

  • using-appfollow, the shared discipline every other skill reads first. It handles session setup, keeps an eye on credit spend, runs the preview then approve then confirm ritual before anything writes data, and gives the others a common way to talk about errors. You never call it directly.
  • search, which finds an app and starts tracking it.
  • feedback-analysis, the feedback report described above.
  • aso-analysis, the ASO report described above.
  • Thin slash commands (/search, /feedback-analysis, /aso-analysis) that point at the matching skill, and one shared .mcp.json that both Claude Code and Codex use to reach the MCP server.

Worth saying plainly: the toolkit ships no bundled API client and no secrets. Every tool call goes through the MCP server using your own OAuth session, gets billed to your own workspace credits, and only ever references public MCP tools. Nothing about your data is hidden away inside the plugin.

How to install it

The toolkit lives on GitHub, and both hosts pull it from there. Pick the one you use.

Claude Code

Add the toolkit as a plugin marketplace source, then install it:

/plugin marketplace add AppFollow/appfollow-ai-toolkit

Then install appfollow-ai-toolkit from the marketplace. The plugin brings its skills and the .mcp.json connection with it, so Claude Code picks up the MCP server automatically. If you'd rather add the MCP server on its own, without the workflows, run:

claude mcp add --transport http appfollow https://mcp.appfollow.io/mcp sign in with /mcp.

Codex

Add the toolkit through the same repository, then install it from inside Codex:

codex plugin marketplace add AppFollow/appfollow-ai-toolkit

Run /plugins inside Codex, install the AppFollow AI Toolkit, and start a new session. For the MCP server on its own:

codex mcp add appfollow --url https://mcp.appfollow.io/mcp mcp login appfollow

Sign in

The first AppFollow tool call opens a Google sign-in. Use the Google account tied to your AppFollow login. After that, every request runs under your own account, and there's nothing else to configure.

Run a workflow

Ask in plain language or use a slash command:

  • "Find our app on the App Store and start tracking it", or /search <app name>
  • "Build a feedback report for the last 30 days", or /feedback-analysis <app or collection>
  • "Run an ASO report and suggest keywords to add", or /aso-analysis <app or collection>

If something's missing or broken, or there's a tool you wish existed, tell us. The MCP server has a built-in submit_feedback tool, so you can send a note to our engineering team from inside the same conversation. This is the first version, and the plan is to keep growing both the toolkit and the public API behind it. The feedback we get now is what shapes the next release.

cta_get_started_purple

FAQ

What is the AppFollow AI Toolkit?

It's an open source plugin for Claude Code and Codex that connects to your AppFollow account and runs guided workflows for app store research and review analysis. You ask for a report in plain language or with a slash command, and the agent runs the steps and hands back the result. It sits on top of the AppFollow MCP server, which exposes around 30 AppFollow tools to AI clients.

How do I connect AppFollow to Claude Code or Codex?

Add the plugin from the GitHub repository. In Claude Code you add it as a plugin marketplace source and install appfollow-ai-toolkit. In Codex you add it through the same repository using Codex's plugin config. Then make your first request. The first tool call opens a Google sign-in, and after that every request runs under your own AppFollow account.

Do I need an API key to use the AppFollow MCP server?

No. The server uses Google OAuth. You sign in with the Google account tied to your AppFollow login, and access is scoped to your account and your existing permissions. There are no keys to copy around and no custom integration to build.

What workflows does the toolkit include?

Three today. Finding and tracking an app on the App Store or Google Play. A feedback report with KPIs, period-over-period deltas, rating and sentiment trends, anomaly callouts, and a ranked list of the top bugs and feature requests. An ASO report with tracked-keyword positions, keywords tiered by effectiveness score, an add-keyword loop, and metadata suggestions. Each report comes out as an HTML file plus a structured findings file.

Does the toolkit use my AppFollow credits?

Yes. There's no separate charge for the toolkit itself, but every tool call runs through the AppFollow MCP server on the public API and is billed to your own workspace credits, the same as any other API usage. The using-appfollow skill keeps an eye on credit spend as it works.

Read other posts from our blog:

How to choose the right AppFollow plan

How to choose the right AppFollow plan

A simple guide to picking the AppFollow plan that fits your team, from free to ASO to enterprise.

Evgeny Kruglov
Evgeny Kruglov
AppFollow Spring '26 hackathon highlights

AppFollow Spring '26 hackathon highlights

A look at what came out of our Spring '26 internal hackathon, from Demo Day pitches to a few project...

Pavel Vlasov
Pavel Vlasov
AppFollow Q2 2026: Steam beta, AI Reply Style, and Report a Concern for everyone

AppFollow Q2 2026: Steam beta, AI Reply Style, and Report a Concern for everyone

AppFollow Q2 brings Steam in closed beta, a rebuilt AI Reply Style, Report a Concern on every plan, ...

Anatoly Sharifulin
Anatoly Sharifulin

Let AppFollow manage your
app reputation for you