@andrewlwn77/app-store-mcp
Version:
MCP server for App Store API integration - Access Apple App Store and Google Play Store data
62 lines • 1.49 kB
JSON
{
"name": "@andrewlwn77/app-store-mcp",
"version": "1.0.1",
"description": "MCP server for App Store API integration - Access Apple App Store and Google Play Store data",
"main": "dist/index.js",
"type": "module",
"bin": {
"app-store-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"app-store",
"google-play",
"apple-app-store",
"api",
"rapidapi"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andrewlwn77/app-store-mcp.git"
},
"bugs": {
"url": "https://github.com/andrewlwn77/app-store-mcp/issues"
},
"homepage": "https://github.com/andrewlwn77/app-store-mcp#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.8",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"jest": "^29.7.0",
"@types/jest": "^29.5.14",
"ts-jest": "^29.2.5",
"@jest/globals": "^29.7.0"
}
}