@andrewlwn77/google-trends-mcp
Version:
MCP server for Google Trends API integration - Access trending topics, questions, and search data
62 lines • 1.52 kB
JSON
{
"name": "@andrewlwn77/google-trends-mcp",
"version": "1.0.0",
"description": "MCP server for Google Trends API integration - Access trending topics, questions, and search data",
"main": "dist/index.js",
"type": "module",
"bin": {
"google-trends-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",
"google-trends",
"trending",
"search-trends",
"api",
"rapidapi"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andrewlwn77/google-trends-mcp.git"
},
"bugs": {
"url": "https://github.com/andrewlwn77/google-trends-mcp/issues"
},
"homepage": "https://github.com/andrewlwn77/google-trends-mcp#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/",
"README.md",
"CLAUDE.md"
],
"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"
}
}