GrabMaps MCP Server
Supports configuration of API credentials and service parameters through environment variables loaded from a .env file.
Enables installation of the MCP server from source code via GitHub repository cloning.
Provides access to GrabMaps services through AWS Location Service, including Places API (geocoding, place details), Maps API (tiles, styles, glyphs, sprites), and Routes API (route calculation and matrix routing).
Enables visualization of GrabMaps data through MapLibre GL, with support for rendering map tiles, styles, sprites, and glyphs from the GrabMaps service.
Provides installation through NPM package registry and usage of NPM scripts for development, building, and deployment workflows.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GrabMaps MCP Serverfind the nearest coffee shop to KLCC in Malaysia"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GrabMaps MCP Server
A Model Context Protocol (MCP) server for GrabMaps API integration, providing access to GrabMaps services through AWS Location Service.
Do note that this MCP server is NOT officially affiliated with Grab, GrabMaps, or AWS Location Service.
Important: GrabMaps only supports eight countries in Southeast Asia.
ðēðū Malaysia (MYS)
ðļðŽ Singapore (SGP)
ðđð Thailand (THA)
ðēðē Myanmar (MMR)
ð°ð Cambodia (KHM)
ðŧðģ Vietnam (VNM)
ðĩð Philippines (PHL)
ðŪðĐ Indonesia (IDN)
Search requests outside these countries will not return accurate results.
Features
This MCP server provides access to GrabMaps functionality through two main categories:
Places Actions (Available via MCP)
SearchPlaceIndexForText: Forward geocoding to find places by name or address
SearchPlaceIndexForPosition: Reverse geocoding to find places by coordinates
SearchPlaceIndexForSuggestions: Get place suggestions as you type
GetPlace: Retrieve detailed information about a specific place
Routes Actions (Available via MCP)
CalculateRoute: Calculate routes between points with waypoints
CalculateRouteMatrix: Calculate a matrix of routes between multiple origins and destinations
Analytics & Monitoring
Firebase Analytics: Cloud-based analytics storage with Firebase Realtime Database
Local Backup: Automatic local file backup as fallback
Visual Dashboard: Real-time analytics dashboard with Chart.js
Request Tracking: Track requests by method, endpoint, client IP, and user agent
Tool Call Tracking: Monitor MCP tool usage and performance
Maps Functionality (Requires AWS Console)
Note: Map rendering functionality is not directly available through the MCP server. To view and use maps:
Go to the AWS Location Service console
Look for the Maps section and click the "Try it" button
Ensure "Grab" is selected as the provider
To explore GrabMaps data coverage and see the maps in action without logging in to AWS, visit: https://grabmaps.grab.com/explore-data-coverage
Related MCP server: Google Maps MCP Server
Installation
From NPM
npm install mcp-grabmapsFrom Source
git clone https://github.com/hithereiamaliff/mcp-grabmaps.git
cd mcp-grabmaps
npm installConfiguration
VPS / HTTP Server (Key Service mode)
The HTTP server authenticates users via the MCP Key Service. Users register their GrabMaps + AWS credentials with the key service and receive a single usr_XXXXXXXX API key.
Create a .env file:
# MCP Key Service (required for hosted HTTP server)
KEY_SERVICE_URL=http://mcp-key-service:8090/internal/resolve
KEY_SERVICE_TOKEN=your_server_token_here
# Place Index name (default for GrabMaps)
PLACE_INDEX_NAME=explore.place.Grab
# Map name (for rendering maps)
MAP_NAME=explore.map.Grab
# Route calculator name
ROUTE_CALCULATOR_NAME=explore.route-calculator.Grab
# Server port
PORT=3000Variable | Required | Description |
| Yes (HTTP) | MCP Key Service resolve endpoint |
| Yes (HTTP) | Bearer token for authenticating with the key service |
| No | AWS Place Index name (default: |
| No | AWS Map name (default: |
| No | AWS Route Calculator name (default: |
| No | Server port (default: |
Smithery / Local Dev
When running via Smithery or local development, GrabMaps and AWS credentials are provided directly through the Smithery SDK config schema (not via key service). Set them in .env:
GRABMAPS_API_KEY=your_grabmaps_api_key_here
AWS_ACCESS_KEY_ID=your_aws_access_key_id_here
AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key_here
AWS_REGION=ap-southeast-5Usage
Method 1: Running Locally
# Development mode
npm run dev
# Production mode
npm run build
npm startMethod 2: Using with Smithery
# Run in development mode
npm run smithery:dev
# Build for production
npm run smithery:build
# Deploy to Smithery
npm run smithery:deployTesting in Smithery Playground
For the best experience testing Places and Routes APIs, we recommend using the Smithery playground:
Start your MCP server locally:
npm run devOpen the Smithery playground at: https://smithery.ai/playground
Connect to your local MCP server:
http://localhost:3000Test Places and Routes API calls using the provided examples in SMITHERY_TESTING.md
Method 3: Self-Hosted VPS Deployment
Deploy the MCP server on your own VPS with Docker and Nginx. Authentication is handled by the MCP Key Service â users provide a single usr_XXXXXXXX API key instead of raw credentials.
VPS URL Format
# Query parameter
https://mcp.techmavie.digital/grabmaps/mcp?api_key=usr_XXXXXXXX
# Path-based
https://mcp.techmavie.digital/grabmaps/mcp/usr_XXXXXXXXClient Configuration
Claude Desktop:
{
"mcpServers": {
"grabmaps": {
"transport": "streamable-http",
"url": "https://mcp.techmavie.digital/grabmaps/mcp?api_key=usr_XXXXXXXX"
}
}
}Cursor/Windsurf: Same format in their MCP configuration files.
Live Demo
A public instance is available at:
https://mcp.techmavie.digital/grabmaps/mcpRegister your GrabMaps + AWS credentials with the MCP Key Service to get your usr_XXXXXXXX API key.
VPS Deployment
Architecture
Client (Claude, Cursor, Windsurf, etc.)
â HTTPS (usr_XXXXXXXX key)
https://mcp.techmavie.digital/grabmaps/mcp/usr_XXXXXXXX
â
Nginx (SSL termination + reverse proxy)
â HTTP
Docker Container (port 8092 â 8080)
â
GrabMaps MCP Server (Streamable HTTP Transport)
â resolves usr_ key
MCP Key Service â decrypted GrabMaps + AWS credentials
â
AWS Location Service (GrabMaps)Deployment Files
File | Description |
| HTTP server with Streamable HTTP transport |
| Container configuration for VPS |
| Docker orchestration (port 8092) |
| Nginx reverse proxy configuration |
| Auto-deployment via GitHub Actions |
Quick Deploy
# On your VPS â ensure the shared Docker network exists
docker network create mcp-network # only needed once
mkdir -p /opt/mcp-servers/grabmaps
cd /opt/mcp-servers/grabmaps
git clone https://github.com/hithereiamaliff/mcp-grabmaps.git .
# Set key-service env vars
cp .env.example .env
nano .env # set KEY_SERVICE_URL and KEY_SERVICE_TOKEN
docker compose up -d --build
# Configure Nginx (add location block from deploy/nginx-mcp.conf)
sudo nano /etc/nginx/sites-available/mcp.techmavie.digital
sudo nginx -t
sudo systemctl reload nginxEndpoints
Endpoint | Description |
| Server info and usage instructions |
| Health check with Firebase status |
| MCP endpoint (query param auth) |
| MCP endpoint (path-based auth) |
| Analytics data (JSON) |
| Visual analytics dashboard |
| MCP server discovery |
| MCP session configuration schema |
Firebase Analytics
The VPS deployment includes Firebase Realtime Database integration for cloud-based analytics storage.
Features
Dual Storage: Firebase (primary) + local file backup (fallback)
Real-time Tracking: Requests, tool calls, client IPs, user agents
Visual Dashboard: Chart.js dashboard at
/analytics/dashboardPersistent: Analytics survive container restarts and redeployments
Auto-save: Saves every 60 seconds + on graceful shutdown
Analytics Data Tracked
Total requests and tool calls
Requests by method (GET, POST)
Requests by endpoint (/, /health, /mcp, /analytics)
Tool usage statistics
Client tracking (IP addresses, user agents)
Hourly request patterns
Recent tool call history
Firebase Setup
See FIREBASE_SETUP.md for complete setup instructions.
Quick setup:
# On VPS
cd /opt/mcp-servers/grabmaps
mkdir -p .credentials
nano .credentials/firebase-service-account.json # Paste your Firebase service account JSON
# Copy to Docker volume
docker volume create grabmaps_firebase-credentials
docker run --rm \
-v grabmaps_firebase-credentials:/credentials \
-v $(pwd)/.credentials:/source:ro \
alpine cp /source/firebase-service-account.json /credentials/
# Fix permissions
docker run --rm \
-v grabmaps_firebase-credentials:/credentials \
alpine chown -R 1001:1001 /credentials/
# Restart
docker compose down
docker compose up -d --buildViewing Analytics
Dashboard:
https://mcp.techmavie.digital/grabmaps/analytics/dashboardJSON API:
https://mcp.techmavie.digital/grabmaps/analyticsFirebase Console: https://console.firebase.google.com/ â Your Project â Realtime Database
Firebase Data Structure
mcp-analytics/
âââ mcp-grabmaps/
âââ serverStartTime: "2026-01-06T..."
âââ totalRequests: 123
âââ totalToolCalls: 45
âââ requestsByMethod: {...}
âââ requestsByEndpoint: {...}
âââ toolCalls: {...}
âââ recentToolCalls: [...]
âââ clientsByIp: {...}
âââ clientsByUserAgent: {...}
âââ hourlyRequests: {...}
âââ lastUpdated: 1704470400000Important Notes for AI Models
Supported Countries
GrabMaps ONLY supports the following eight countries in Southeast Asia:
Malaysia (MYS)
Singapore (SGP)
Thailand (THA)
Myanmar (MMR)
Cambodia (KHM)
Vietnam (VNM)
Philippines (PHL)
Indonesia (IDN)
AI models should not attempt to use GrabMaps for locations outside these countries as results will be inaccurate or non-existent.
Country Code Requirements
When using the Places API functions, AI models MUST analyze the user's query to determine the appropriate country and include the three-letter ISO country code in all requests:
{
"query": "City Square Mall",
"country": "SGP" // SGP for Singapore, MYS for Malaysia, THA for Thailand, etc.
}Examples of country codes:
Singapore: SGP
Malaysia: MYS
Thailand: THA
Indonesia: IDN
Philippines: PHL
Vietnam: VNM
Including the country code is critical for returning accurate search results.
This approach allows you to test the Places and Routes functionality without needing to set up map visualization components.
Example API Calls
Forward Geocoding
const response = await fetch('http://localhost:3000/searchPlaceIndexForText', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
query: 'KLCC, Kuala Lumpur',
country: 'my',
maxResults: 5
})
});
const data = await response.json();
console.log(data);Calculate Route
const response = await fetch('http://localhost:3000/calculateRoute', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
origin: {
longitude: 101.6942371,
latitude: 3.1516964
},
destination: {
longitude: 101.7113,
latitude: 3.1421
},
travelMode: 'Car'
})
});
const data = await response.json();
console.log(data);Integrating with AI Models
This MCP server can be integrated with AI models that support the Model Context Protocol. Example integration with an AI model:
// Example of how an AI model would use this MCP server
const result = await mcpClient.call('grabmaps', 'searchPlaceIndexForText', {
query: 'KLCC, Kuala Lumpur',
country: 'my'
});
// The AI model can then use the result in its response
console.log(`The coordinates of KLCC are: ${result.results[0].coordinates.latitude}, ${result.results[0].coordinates.longitude}`);AWS Location Service Setup
Before using this MCP server, you need to set up the following resources in AWS Location Service:
Create a Place Index with GrabMaps as the data provider
Create a Map with GrabMaps as the data provider
Create a Route Calculator with GrabMaps as the data provider
Map Component Limitations and Recommended Approach
The Maps API components have certain limitations when used through the MCP server:
Map tiles returned by the
getMapTileendpoint are binary data encoded as base64 stringsFont stacks for
getMapGlyphsmust match those supported by GrabMaps via AWS Location ServiceSprite filenames for
getMapSpritesmust follow specific regex patternsMaximum zoom levels are restricted (typically max zoom 14)
Recommended Approach:
For Maps: Use direct integration with GrabMaps via MapLibre GL and AWS Location Service as shown in the official demo
For Places and Routes: Use the MCP server through the Smithery playground or direct API calls
This separation allows for optimal performance and visualization while still leveraging the MCP server for Places and Routes functionality.
Official GrabMaps MapLibre GL Demo
A comprehensive demo using the official GrabMaps integration with MapLibre GL is included in the examples/official-map-demo directory. This demo provides a complete testing interface for all GrabMaps components:
Places API: Forward/reverse geocoding and place details
Maps API: Map tiles, style descriptors, sprites, and glyphs
Routes API: Route calculation and route matrix
The demo features a tabbed interface for easy testing of different components and provides detailed feedback for each API call.
Key Features
Interactive map using official GrabMaps map tiles via MapLibre GL
Tabbed interface for testing different GrabMaps components
Comprehensive testing of all API endpoints
Configurable API key, region, and resource names
Visual display of routes, search results, and map components
To run the demo:
# Start the MCP server
npm start
# Then open examples/official-map-demo/index.html in your browserSee the Official Map Demo README for setup and usage instructions.
Testing
A comprehensive test suite is included in the tests directory to verify all endpoints are working correctly. For detailed testing instructions, examples, and troubleshooting tips, please refer to the TESTING.md file.
To run the tests:
# Start the MCP server in one terminal
npm start
# Run the test suite in another terminal
node tests/test-suite.jsLicense
This project is licensed under the MIT License - see the LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hithereiamaliff/mcp-grabmaps'
If you have feedback or need assistance with the MCP directory API, please join our Discord server