gmap
Resolves place information from Facebook URLs to save to Google Maps.
Saves places to specific Google Maps saved lists with regional routing and allows resolving place information from Google Maps URLs.
Resolves place information from Instagram URLs to save to Google Maps.
Provides a LINE bot interface for sharing places from social media to Google Maps saved lists.
Resolves place information from Threads URLs to save to Google Maps.
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., "@gmapResolve and save this Instagram place to my Taipei list: https://instagr.am/p/abc"
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.
gmap-place-saver
Resolve a place from a social or Google Maps URL (or free text), confirm one candidate, and save it to the correct regional Google Maps saved list — with optional source/recommendation notes. Ships as an MCP server (usable by any MCP-capable agent) plus a CLI.
It automates the manual flow of "I saw a place on Instagram/Threads/Facebook → which of my regional saved lists does it belong in → save it there → keep the source link and why it was recommended."
How it works
resolve_place(url|text) -> ONE candidate + a reusable savePayload (no writes)
| (you/the agent confirm the candidate)
v
save_place(savePayload) -> saves to the EXACT regional list
| (optional)
v
attach_note(...) -> note on the exact place, else a local sidecar recordResolution prefers a fast, cache-friendly path: high-confidence social posts (place name + address + region) resolve from metadata in tens of milliseconds and skip the browser. Weaker cases fall back to a Playwright lookup on Google Maps using a persistent, logged-in browser profile.
Related MCP server: Coconuts MCP Server
Requirements
Node.js >= 22 (required by
@line/bot-sdk; Node 18/20 are EOL).A Google account and a persistent Chromium profile logged into it (see One-time login).
Playwright's Chromium:
npx playwright install chromium.
Install
git clone https://github.com/bolin8017/gmap-place-saver.git
cd gmap-place-saver
npm install
npx playwright install chromium
cp .env.example .env # then edit GOOGLE_MAPS_PROFILEOne-time login
Saving to personal lists requires a logged-in Google session. Create one once into a persistent profile (needs a display — a desktop, or Xvfb/noVNC on a server):
GOOGLE_MAPS_PROFILE=/path/to/google-maps-profile npm run loginSign in, open Google Maps, then press Enter. Every later run reuses that profile headlessly. No Google credentials are ever passed to or stored by this tool.
Headless server (no display): use the noVNC wrapper, which starts a virtual display and exposes it in your browser:
sudo apt-get install -y xvfb x11vnc novnc websockify xauth # one-time prereqs
GOOGLE_MAPS_PROFILE=/path/to/google-maps-profile ./scripts/login-server.shIt prints a 127.0.0.1:6080 noVNC URL (tunnel it over SSH) and a one-time VNC
password; connect, enter the password, sign in, then press Enter in the terminal
to save and shut everything down. The display is xauth-protected and the VNC
server password-protected, so other local users on a shared server cannot watch
the login. Tool paths are overridable via env (XVFB, X11VNC, NOVNC_PROXY,
NODE_BIN, DISPLAY_NUM, ports).
Configuration
All paths and tuning come from environment variables (see .env.example). Nothing
is hardcoded. A .env file at the package root is loaded automatically;
variables already set in the real environment take precedence.
Variable | Purpose | Default |
| Persistent Chromium profile (required for browser ops) | — |
| Base dir for runtime data (set it explicitly for global/read-only installs — the default writes inside the package dir) | the package dir |
| Region → list mapping JSON |
|
| Candidate / social caches | under |
| Benchmark JSONL |
|
| Failure artifacts (screenshots etc.) |
|
| Local note sidecar records |
|
| Navigation retry tuning |
|
|
| headless |
|
| enabled |
| Let yt-dlp reuse browser cookies for captions | unset |
Region config
Routing is driven by a JSON file whose keys are your Google Maps saved-list
names and whose values are address substrings that route an address to that
list. Ship your own (kept private — it is gitignored); see
config/region-lists.example.json:
{
"Taipei": ["台北市", "臺北市", "新北市"],
"Kaohsiung": ["高雄市"],
"Hong Kong": ["香港"]
}If a place's region is ambiguous or its list is missing, the tool asks for confirmation or fails clearly — it never silently saves to the wrong list.
Use it from an AI agent (MCP)
The server is named gmap and speaks MCP over stdio. Point your agent at
mcp/server.js with the env it needs.
Claude Desktop — claude_desktop_config.json:
{
"mcpServers": {
"gmap": {
"command": "node",
"args": ["/absolute/path/to/gmap-place-saver/mcp/server.js"],
"env": {
"GMAP_HOME": "/absolute/path/to/gmap-place-saver",
"GOOGLE_MAPS_PROFILE": "/absolute/path/to/google-maps-profile"
}
}
}
}Claude Code:
claude mcp add gmap -- node /absolute/path/to/gmap-place-saver/mcp/server.js
# then set GMAP_HOME and GOOGLE_MAPS_PROFILE in the server's environmentGeneric MCP / Hermes (mcp_servers) — a real, working example:
mcp_servers:
gmap:
# Use an ABSOLUTE node path. With nvm it is version-specific, e.g.
# /home/<you>/.nvm/versions/node/v20.19.0/bin/node
command: /home/<you>/.nvm/versions/node/v20.19.0/bin/node
args:
- /path/to/gmap-place-saver/mcp/server.js
env:
# GMAP_HOME is the data dir: caches, logs, sidecar, and the default
# config/region-lists.json resolve under it. Point it at an existing
# data dir to reuse your caches AND your real saved-list config.
GMAP_HOME: /path/to/your/gmap-data-dir
GOOGLE_MAPS_PROFILE: /path/to/google-maps-profile
# Optional: set explicitly if your region config lives elsewhere.
GMAP_REGION_CONFIG: /path/to/your/region-lists.json
timeout: 180
connect_timeout: 60PATH and HOME are inherited automatically, so Playwright finds its browser
cache and yt-dlp (if installed) works. After editing the config, reload without
restarting the gateway by sending /reload-mcp in Hermes.
Tools
Tool | Description | Touches the browser |
| URL/text → one candidate + | only on the weaker path |
| Save a confirmed candidate to the exact regional list ( | yes |
| Attach a note to the exact place (via its saved list), else sidecar / refuse | yes |
| Remove the note on the exact place (via its saved list); returns previousText | yes |
| Return the region → list mapping | no |
| Summarize resolver/save performance | no |
| Safe diagnostics (node, Playwright, profile, region config) | no |
CLI
gmap-place resolve '<instagram/maps url | place text>'
PLACE_QUERY='…' LIST_NAME='Taipei' EXPECTED_NAME='…' DRY_RUN=1 gmap-place save
EXPECTED_NAME='…' LIST_NAME='彰化' SOURCE_URL='…' RECOMMENDATION='…' gmap-place attach
EXPECTED_NAME='…' LIST_NAME='彰化' gmap-place clear-note
gmap-place regions
gmap-place benchmark 100Safety guarantees
A candidate is always confirmed before any save (
resolveandsaveare separate).Saves go only to the exact matching regional list — never a silent fallback.
A note is attached only when the page title and the note field's nearest ancestors both confirm the exact place; otherwise it is written to a local sidecar JSONL record or refused.
An existing note is never replaced unless
overwriteis explicitly set (CLI:OVERWRITE_NOTE=1); without it the new note goes to the sidecar and the existing text is returned aspreviousText.No Google credentials are requested or stored; a persistent profile is used.
Tool output is compact JSON with privacy-safe snippets only.
Chromium is launched with
--no-sandbox(required in containers/root environments); run as a regular user if the reduced browser isolation concerns you.
Development
npm test # unit tests + MCP integration test + syntax gate
npm run smoke:resolve # needs network (and the profile for the slow path)
npm run mcp # run the MCP server on stdioArchitecture: pure logic (config, social parsing, note scoring, recommendation)
lives in small unit-tested modules; browser automation (candidate, save,
note) are importable async functions; the MCP server and CLI both call the same
core — no child-process spawning between layers.
LINE bot (friends edition)
A thin LINE layer over the same core: a friend shares an IG/Threads/FB or Google Maps link to the bot, and the place lands in her own Google Maps county list (auto-created on first use). High-confidence resolutions save automatically; ambiguous ones come back as a "is this the one?" card; every result card has a one-tap undo. Replies use reply tokens (free); push messages are only a fallback, so the free LINE plan is plenty for a trusted circle.
Setup
Create a Messaging API channel in the LINE Developers console. Disable auto-reply messages. Note the channel secret and issue a channel access token; put both in
.env(LINE_CHANNEL_SECRET,LINE_CHANNEL_ACCESS_TOKEN), plus your own user id asLINE_ADMIN_USER_ID.Start the server:
npm run line:server(or installscripts/gmap-line-bot.service.exampleas a systemd user unit).Expose the webhook with a Cloudflare Tunnel. Easiest:
npm run line:tunnel(or installscripts/gmap-line-tunnel.service.exampleas a systemd user unit) — it runs a quick tunnel and re-registers the channel's webhook endpoint via the LINE API every time the temporary hostname changes, so no domain is needed. Just enable webhooks once in the console. Alternatively run a named tunnel for a stable hostname (requires a Cloudflare-managed domain) and sethttps://<tunnel-host>/webhookmanually.
Onboarding a friend
Have her create a dedicated Google account for the bot first. The server stores a full logged-in browser session, which is equivalent to holding the account — a burner account that only ever contains food lists keeps that trust boundary honest. To browse the results comfortably, she can share the burner's lists (link sharing) and follow them from her main account: followed lists show up in her own Maps without account switching.
Get her LINE user id (it appears in the server log when she messages the bot and is rejected).
npm run line:onboard -- <lineUserId> <display name>— createsusers/<id>/with the Taiwan county template and allowlists her.Log her into Google once:
GOOGLE_MAPS_PROFILE=users/<id>/profile ./scripts/login-server.shand send her the (tunneled) noVNC link. After she signs in, she is live.
Several LINE users may share one Google account (e.g. a couple): onboard the
first user normally, and after her login add the others with
npm run line:onboard -- <otherLineUserId> <name> --share-with <lineUserId>.
They then share the profile, region config, and history — a place one of
them saved answers "already saved" to the other. One LINE user driving
multiple Google accounts is not supported.
Each user's tree under users/<id>/ holds her Chromium profile, her
region-lists.json (customizable), and her saved-place history. Remove the
directory and the allowlist entry to offboard (for --share-with users the
directory is just a symlink; removing it never touches the shared account).
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceEnables LLMs to perform travel-related tasks by interacting with Google Maps and travel planning services including location search, place details, and travel time calculations.1053499MIT
- -license-quality-maintenanceEnables management of Google Maps saved places through a SQLite database. Allows users to store, query, and organize their Google Maps places data locally.
- AlicenseAqualityBmaintenanceEnables AI assistants to access Google Maps services including places search, details, directions, geocoding, and nearby search through natural language.62MIT
- Alicense-qualityDmaintenanceEnables interaction with Google Maps API for geocoding, place search, directions, distance matrices, and elevation data through natural language.MIT
Related MCP Connectors
Turn a trip planned in conversation into a private, editable map link you hand the person.
Search, save, and set reminders in your personal MarkIt library of links, posts, and notes.
Live Google Maps business search, review, and photo data for AI agents over MCP.
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/bolin8017/gmap-place-saver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server