
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@andrewlwn77/app-store-mcp
Advanced tools
MCP server for App Store API integration - Access Apple App Store and Google Play Store data
⚠️ 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.
This MCP server is designed to be used with MCP-compatible applications like Claude Desktop, VS Code with Copilot, or other MCP clients.
Add this server to your MCP client configuration:
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"app-store": {
"command": "npx",
"args": ["-y", "@andrewlwn77/app-store-mcp"],
"env": {
"APP_STORE_API_KEY": "your-api-key-here",
"CACHE_ENABLED": "true",
"CACHE_TTL_SECONDS": "300",
"CACHE_MAX_ENTRIES": "100",
"RESULTS_PER_PAGE": "10"
}
}
}
}
Add to your MCP configuration (User Settings JSON or .vscode/mcp.json
):
{
"servers": {
"app-store": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@andrewlwn77/app-store-mcp"],
"env": {
"APP_STORE_API_KEY": "your-api-key-here",
"CACHE_ENABLED": "true",
"CACHE_TTL_SECONDS": "300",
"CACHE_MAX_ENTRIES": "100",
"RESULTS_PER_PAGE": "10"
}
}
}
}
npm install -g @andrewlwn77/app-store-mcp
git clone <repository-url>
cd app-store-mcp
npm install
npm run build
Required: You must set the APP_STORE_API_KEY
environment variable before running the server.
# 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!
The server supports several environment variables for performance tuning:
Variable | Description | Default | Example |
---|---|---|---|
APP_STORE_API_KEY | Required - Your RapidAPI key | - | abc123def456 |
CACHE_ENABLED | Enable/disable response caching | true | false |
CACHE_TTL_SECONDS | Cache entry time-to-live | 300 | 600 |
CACHE_MAX_ENTRIES | Maximum cached entries (LRU eviction) | 100 | 50 |
RESULTS_PER_PAGE | Default pagination page size | 10 | 5 |
# High-performance configuration
export CACHE_TTL_SECONDS=600
export RESULTS_PER_PAGE=5
export CACHE_MAX_ENTRIES=200
# Disable caching for development/debugging
export CACHE_ENABLED=false
# For local development and testing
npm start
# For development with auto-reload
npm run dev
# Test the server directly (requires MCP client)
npx -y @andrewlwn77/app-store-mcp
Note: This server is designed to be used through MCP clients. Direct execution will wait for MCP protocol messages via stdin.
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")page
(optional): Page number, 1-based (default: 1)pageSize
(optional): Results per page (default: from RESULTS_PER_PAGE
)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")page
(optional): Page number, 1-based (default: 1)pageSize
(optional): Results per page (default: from RESULTS_PER_PAGE
)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")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")page
(optional): Page number, 1-based (default: 1)pageSize
(optional): Results per page (default: from RESULTS_PER_PAGE
)Once configured with an MCP client, you can use natural language to interact with the tools:
The server will automatically handle the API calls and return formatted results.
The server can be configured using environment variables:
APP_STORE_API_KEY
: Your RapidAPI key for the App Stores API (required)app-store-mcp/
├── src/
│ ├── index.ts # Main MCP server implementation
│ └── types.ts # TypeScript type definitions
├── package.json
├── tsconfig.json
├── .env.example
└── README.md
This server is written in TypeScript and provides full type safety for:
MIT
FAQs
MCP server for App Store API integration - Access Apple App Store and Google Play Store data
The npm package @andrewlwn77/app-store-mcp receives a total of 17 weekly downloads. As such, @andrewlwn77/app-store-mcp popularity was classified as not popular.
We found that @andrewlwn77/app-store-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.