Skip to main content
Glama
JiantaoFu

App Market Intelligence MCP

app-store-suggest

Generate App Store search suggestions to discover trending app names and keywords, helping users research market demand and identify popular search terms.

Instructions

Get search suggestions from the App Store. Returns an array of objects with:

  • term: Suggested search term Each suggestion has a priority from 0 (low traffic) to 10000 (most searched)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
termYesSearch term to get suggestions for

Implementation Reference

  • The handler function for the 'app-store-suggest' tool. It calls store.suggest({ term }) from the app-store-scraper library and formats the result as MCP content.
    async ({ term, country }) => { const suggestions = await store.suggest({ term }); return { content: [{ type: "text", text: JSON.stringify(suggestions) }] }; }
  • Zod schema defining the input parameters for the tool: a required 'term' string.
    { term: z.string().describe("Search term to get suggestions for") },
  • src/server.js:206-217 (registration)
    The server.tool() call that registers the 'app-store-suggest' MCP tool, including its description, input schema, and handler function.
    server.tool("app-store-suggest", "Get search suggestions from the App Store. Returns an array of objects with:\n" + "- term: Suggested search term\n" + "Each suggestion has a priority from 0 (low traffic) to 10000 (most searched)", { term: z.string().describe("Search term to get suggestions for") }, async ({ term, country }) => { const suggestions = await store.suggest({ term }); return { content: [{ type: "text", text: JSON.stringify(suggestions) }] }; } );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/JiantaoFu/AppInsightMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server