@cablate/mcp-google-map 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +86 -0
- package/dist/index.cjs +23704 -0
- package/package.json +47 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 CabLate
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# MCP Google Map Server
|
|
2
|
+
|
|
3
|
+
A powerful Model Context Protocol (MCP) server providing comprehensive Google Maps API integration with LLM processing capabilities.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
### Google Maps Features
|
|
8
|
+
|
|
9
|
+
- Location search and information retrieval
|
|
10
|
+
- Geocoding and reverse geocoding
|
|
11
|
+
- Detailed place information
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
### Via NPM
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g @cablate/mcp-google-map
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
### Command Line
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
mcp-google-map
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Integration with [Dive Desktop](https://github.com/OpenAgentPlatform/Dive)
|
|
30
|
+
|
|
31
|
+
1. Click "+ Add MCP Server" in Dive Desktop
|
|
32
|
+
2. Copy and paste the following configuration:
|
|
33
|
+
|
|
34
|
+
```json
|
|
35
|
+
{
|
|
36
|
+
"mcpServers": {
|
|
37
|
+
"google-map": {
|
|
38
|
+
"command": "npx",
|
|
39
|
+
"args": ["-y", "@cablate/mcp-google-map"],
|
|
40
|
+
"env": {
|
|
41
|
+
"GOOGLE_MAPS_API_KEY": "your_api_key"
|
|
42
|
+
},
|
|
43
|
+
"enabled": true
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
3. Click "Save" to complete the installation
|
|
50
|
+
|
|
51
|
+
## Google Maps API Setup
|
|
52
|
+
|
|
53
|
+
To use this service, you need to:
|
|
54
|
+
|
|
55
|
+
1. Create a project in [Google Cloud Console](https://console.cloud.google.com/)
|
|
56
|
+
2. Enable Google Maps API services
|
|
57
|
+
3. Obtain an API key
|
|
58
|
+
4. Set the `GOOGLE_MAPS_API_KEY` environment variable
|
|
59
|
+
|
|
60
|
+
## Tech Stack
|
|
61
|
+
|
|
62
|
+
- TypeScript
|
|
63
|
+
- Node.js
|
|
64
|
+
- Google Maps Services JS
|
|
65
|
+
- Model Context Protocol SDK
|
|
66
|
+
|
|
67
|
+
## License
|
|
68
|
+
|
|
69
|
+
MIT
|
|
70
|
+
|
|
71
|
+
## Contributing
|
|
72
|
+
|
|
73
|
+
Community participation and contributions are welcome! Here's how you can contribute:
|
|
74
|
+
|
|
75
|
+
- ⭐️ Star the project if you find it helpful
|
|
76
|
+
- 🐛 Submit Issues: Report bugs or provide suggestions
|
|
77
|
+
- 🔧 Create Pull Requests: Submit code improvements
|
|
78
|
+
|
|
79
|
+
## Contact
|
|
80
|
+
|
|
81
|
+
If you have any questions or suggestions, feel free to reach out:
|
|
82
|
+
|
|
83
|
+
- 📧 Email: [reahtuoo310109@gmail.com](mailto:reahtuoo310109@gmail.com)
|
|
84
|
+
- 📧 GitHub: [CabLate](https://github.com/cablate/)
|
|
85
|
+
- 🤝 Collaboration: Welcome to discuss project cooperation
|
|
86
|
+
- 📚 Technical Guidance: Sincere welcome for suggestions and guidance
|