andrewlwn77/app-store-mcp
If you are the rightful owner of app-store-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The App Store MCP Server provides access to app store data from both Apple App Store and Google Play Store through the App Stores API.
app_store_autocomplete
Get app name suggestions based on a search term.
app_store_search
Search for apps in the app store.
app_store_details
Get detailed information about a specific app.
app_store_reviews
Get reviews for a specific app.
App Store MCP Server
ā ļø IMPORTANT SECURITY NOTICE: Never commit API keys to version control. This package requires an API key to be set via environment variable.
An MCP (Model Context Protocol) server that provides access to app store data from both Apple App Store and Google Play Store through the App Stores API.
Features
- Autocomplete: Get app name suggestions based on search terms
- Search: Search for apps across app stores
- Details: Get detailed information about specific apps
- Reviews: Fetch user reviews for apps
Installation
Option 1: Using npx (Recommended)
# Set your API key first
export APP_STORE_API_KEY="your-api-key-here"
# Run directly with npx
npx @andrewlwn77/app-store-mcp
Option 2: Global Installation
npm install -g @andrewlwn77/app-store-mcp
Option 3: Local Development
git clone <repository-url>
cd app-store-mcp
npm install
npm run build
Configuration
Required: You must set the APP_STORE_API_KEY
environment variable before running the server.
- Get an API key from RapidAPI App Stores
- Set the environment variable:
# Option 1: Export in your shell export APP_STORE_API_KEY="your-api-key-here" # Option 2: Create a .env file (for local development) echo "APP_STORE_API_KEY=your-api-key-here" > .env
ā ļø Security: Never commit your .env
file or API key to version control!
Usage
Running the server
# If installed globally or using npx
app-store-mcp
# For local development
npm start
# For development with auto-reload
npm run dev
Available Tools
1. app_store_autocomplete
Get app name suggestions based on a search term.
Parameters:
store
(required): "apple" or "google"term
(required): Search term for autocompletelanguage
(optional): Language code (default: "en")
2. app_store_search
Search for apps in the app store.
Parameters:
store
(required): "apple" or "google"term
(required): Search termlanguage
(optional): Language code (default: "en")
3. app_store_details
Get detailed information about a specific app.
Parameters:
store
(required): "apple" or "google"id
(required): App ID (bundle ID for iOS, package name for Android)language
(optional): Language code (default: "en")
4. app_store_reviews
Get reviews for a specific app.
Parameters:
store
(required): "apple" or "google"id
(required): App ID (bundle ID for iOS, package name for Android)language
(optional): Language code (default: "en")
Example Usage with MCP Client
// Search for apps
const searchResult = await client.callTool('app_store_search', {
store: 'google',
term: 'meditation',
language: 'en'
});
// Get app details
const appDetails = await client.callTool('app_store_details', {
store: 'apple',
id: 'com.spotify.client',
language: 'en'
});
// Get app reviews
const reviews = await client.callTool('app_store_reviews', {
store: 'google',
id: 'com.snapchat.android',
language: 'en'
});
Configuration
The server can be configured using environment variables:
APP_STORE_API_KEY
: Your RapidAPI key for the App Stores API (required)
Development
Project Structure
app-store-mcp/
āāā src/
ā āāā index.ts # Main MCP server implementation
ā āāā types.ts # TypeScript type definitions
āāā package.json
āāā tsconfig.json
āāā .env.example
āāā README.md
Type Safety
This server is written in TypeScript and provides full type safety for:
- API parameters
- API responses
- Error handling
- Store validation (only accepts "apple" or "google")
License
MIT