mappls-mcp
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., "@mappls-mcpFind the nearest hospital to Connaught Place"
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.
mappls-mcp
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.
Tools (18)
Search & Geocoding
Tool | Description |
| Address or place name → lat/lng |
| lat/lng → human-readable Indian address |
| Autocomplete suggestions as user types |
| Search by keyword or brand (e.g. "Starbucks Delhi") |
| Find hospitals, ATMs, petrol pumps, restaurants near a point |
| Full details for a place using its eLoc code |
| Standardize a raw address into structured components |
| Validate a 6-digit pincode, get district + state |
Routing & Navigation
Tool | Description |
| Turn-by-turn directions (driving/biking/walking) |
| Traffic-aware ETA using real-time conditions |
| Distances + durations between multiple points |
| Traffic-aware distance matrix |
| Find fuel stations, restaurants, ATMs along a route |
| Snap raw GPS coordinates to nearest road |
Utilities
Tool | Description |
| Altitude above sea level for any lat/lng point |
| Straight-line (crow-fly) distance between two points |
| Generate a static map image URL for any location |
Related MCP server: Google Maps MCP Server
Getting Started
1. Get a Mappls API key (free)
Sign up at about.mappls.com/api — free account, no credit card
After login, click Create New Project → choose Cloud as the platform
Open the project → go to the Credentials tab → copy the Static Key
Go to the Whitelisting tab → leave the IP field blank for unrestricted access
The free tier includes generous API limits suitable for development and small projects.
2. Install
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 build3. Configure
Set your API key as an environment variable:
export MAPPLS_API_KEY=your_static_key_hereIntegration
Claude Desktop
Edit ~/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"
}
}
}
}Cursor / Windsurf
Add to your MCP settings:
{
"mappls": {
"command": "npx",
"args": ["mappls-mcp"],
"env": {
"MAPPLS_API_KEY": "your_static_key_here"
}
}
}Local build (alternative)
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"
}
}
}
}Example Prompts
Once connected, ask your AI agent:
"Find the nearest hospital to Connaught Place, New Delhi"
"What's the address at 28.6139, 77.2090?"
"Get driving directions from Bandra to Andheri"
"Is pincode 400001 valid? What area is it?"
"How far is Delhi from Mumbai in a straight line?"
"What is the elevation of Shimla?"
"Find ATMs along the route from India Gate to Qutub Minar"
"Standardize this address: 237 Okhla Industrial Phase 3 ND 110020"
"Search for Domino's near Koramangala Bangalore"
Notes
All tools accept lat/lng in decimal degrees (e.g.
28.6139, 77.2090)Routing tools use lat,lng format for input (the server handles coordinate conversion internally)
nearby_searchuses plain keywords like"hospital","atm","restaurant"— Mappls maps these to category codes automaticallypoi_along_routerequires the encoded polyline from thegeometryfield of aget_directionsresponsestill_map_imagereturns a URL — the image is a PNG map tile
License
MIT — built by AmanMakesStuff
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/AmanMakesStuff/mappls-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server