Mappls Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mappls Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server for Mappls — India's own maps platform (MapMyIndia). Gives AI agents accurate geocoding, routing, nearby search, and more for Indian addresses and locations.
Built because Google Maps MCP exists, but nothing existed for India-first location data.
| Tool | Description |
|---|---|
geocode | Address or place name → lat/lng |
reverse_geocode | lat/lng → human-readable Indian address |
autosuggest | Autocomplete suggestions as user types |
text_search | Search by keyword or brand (e.g. "Starbucks Delhi") |
nearby_search | Find hospitals, ATMs, petrol pumps, restaurants near a point |
place_details | Full details for a place using its eLoc code |
address_analytics | Standardize a raw address into structured components |
validate_pincode | Validate a 6-digit pincode, get district + state |
| Tool | Description |
|---|---|
get_directions | Turn-by-turn directions (driving/biking/walking) |
get_directions_with_traffic | Traffic-aware ETA using real-time conditions |
distance_matrix | Distances + durations between multiple points |
distance_matrix_with_traffic | Traffic-aware distance matrix |
poi_along_route | Find fuel stations, restaurants, ATMs along a route |
snap_to_road | Snap raw GPS coordinates to nearest road |
| Tool | Description |
|---|---|
elevation | Altitude above sea level for any lat/lng point |
aerial_distance | Straight-line (crow-fly) distance between two points |
still_map_image | Generate a static map image URL for any location |
The free tier includes generous API limits suitable for development and small projects.
npm install -g mappls-mcpOr run directly without installing:
npx mappls-mcpOr clone and build locally:
git clone https://github.com/AmanMakesStuff/mappls-mcp
cd mappls-mcp
npm install && npm run buildSet your API key as an environment variable:
export MAPPLS_API_KEY=your_static_key_hereEdit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"mappls": {
"command": "npx",
"args": ["mappls-mcp"],
"env": {
"MAPPLS_API_KEY": "your_static_key_here"
}
}
}
}Add to your MCP settings:
{
"mappls": {
"command": "npx",
"args": ["mappls-mcp"],
"env": {
"MAPPLS_API_KEY": "your_static_key_here"
}
}
}If you cloned the repo:
{
"mcpServers": {
"mappls": {
"command": "node",
"args": ["/absolute/path/to/mappls-mcp/build/index.js"],
"env": {
"MAPPLS_API_KEY": "your_static_key_here"
}
}
}
}Once connected, ask your AI agent:
28.6139, 77.2090)nearby_search uses plain keywords like "hospital", "atm", "restaurant" — Mappls maps these to category codes automaticallypoi_along_route requires the encoded polyline from the geometry field of a get_directions responsestill_map_image returns a URL — the image is a PNG map tileMIT — built by AmanMakesStuff
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.