Add Google Maps

This commit is contained in:
Mahesh Murag
2024-11-20 02:19:36 -05:00
parent 56d2d1b1b4
commit 9e3a072a8a
4 changed files with 814 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
"name": "@modelcontextprotocol/server-google-maps",
"version": "0.1.0",
"description": "MCP server for using the Google Maps API",
"license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)",
"homepage": "https://modelcontextprotocol.io",
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
"type": "module",
"bin": {
"mcp-server-google-maps": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"puppeteer": "^23.4.0"
},
"devDependencies": {
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}