Gemini Search MCP Server

{ "name": "@chanmeng666/google-news-server", "version": "1.0.0", "description": "MCP server for Google News search via SerpAPI", "type": "module", "bin": { "google-news-server": "./dist/index.js" }, "files": [ "dist" ], "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"", "prepare": "npm run build", "watch": "tsc --watch", "start": "node dist/index.js", "dev": "ts-node-dev --respawn src/index.ts", "lint": "eslint src/**/*.ts", "test": "jest" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "axios": "^1.7.9", "dotenv": "^16.4.7" }, "devDependencies": { "@types/axios": "^0.14.0", "@types/jest": "^29.5.12", "@types/node": "^20.17.10", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", "eslint": "^9.0.0", "jest": "^29.7.0", "ts-jest": "^29.1.2", "ts-node-dev": "^2.0.0", "typescript": "^5.3.3" } }