Location Memory
Location Memory is a private, self-hosted location archive system that ingests and analyzes personal location history (Google Timeline exports, OwnTracks, etc.) while preserving privacy. Key capabilities include:
Current location & weather:
current_locationreturns current address, local time, fix age, trip status, trip day, and distance from home; weather tools (weather_now,will_it_rain,weather_forecast,weather_models,weather_history) provide current, forecast, historical, and rain-probability data for current or past locations.Stays & places:
stayslists chronological stops with duration, trip context, and place, filterable by city/country/granularity/min duration;top_placesranks places by time spent;dayreconstructs a date's stays and journeys with transport mode and distance.Cities & countries:
cities_visitedandcountries_visitedsummarize time spent, visit counts, distinct days, and cities within countries.Trips:
tripslists trips with name, dates, nights, countries, cities, distance from home, and companions;tripprovides day-by-day itineraries, stays, journeys, tagged people, and notes.Stats & records:
travel_statscomputes kilometers by transport mode, flights, longest flight, days away vs. home, countries and cities touched;recordsreports personal extremes like highest altitude, fastest speed, farthest from home, four compass records, longest trip, most cities in a day, and longest flight.Home & coverage:
homemaintains a timeline of past home addresses for accurate distance calculations;location_coveragereports data spans, sources, and gaps of 2+ weeks.People (optional bridge):
who_was_therelinks trips to people;with_mereports days spent with someone including non-trip time;record_togetherlogs time spent with others.Advanced queries & privacy:
location_sqlallows read-only SELECTs against the schema; the server is self-contained with no telemetry, and supports bearer tokens, TLS enforcement, and read-only SQL access.
Allows importing Google Timeline location history exports into a private archive, enabling queries about past stays, trips, cities visited, and travel statistics.
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., "@Location Memorywhich cities did I go to last spring, and how long in each?"
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.
Location Memory
Where you were, when, for how long, and who with. A private location archive with an MCP server on top, so your agent can answer questions about your own past instead of asking you.
Your data stays in your Postgres. No hosted service, no telemetry, no account.
you: which cities did I go to last spring, and how long in each?
cities_visited(period: "last_90_days")
Lisbon 11 days 3 separate times 142h
Porto 4 days 1 time 61h
Paris 38 days — homeWhy this is not a table of coordinates
A position log answers "where was I at 14:03". Nobody asks that. People ask how long were we in Lisbon, how many times have I been to Japan, what did I do on the 8th, how far did I fly last year. Those are questions about stays and journeys, and you cannot recover either one from a stream of points without guessing.
So the archive keeps what the phone already knew and a geocoder can never reconstruct:
What | Where it comes from | Why it cannot be recomputed |
A stay, with a real start and end | the export | interpolating between fixes invents the boundaries |
Transport mode | the phone's sensors | a straight line between two points does not say "flying" |
Distance travelled | the export | the route is not the great circle |
Which place is home | the export's own profile | every "far from home" number depends on it |
Altitude and speed | the raw fix log | not derivable from lat/lon at all |
location_v_stays is the single spine everything reads: imported stays, followed by the live feed's tail after the last import, deduplicated at the seam.
Related MCP server: hippocampus-mcp
The two things it refuses to get wrong
A duration is measured, never modelled. Start and end come from the source. The one place a duration is inferred, a run of live pings in the same place, is capped at 72 hours, because a phone that goes quiet for a week did not stand still for a week.
"No record" is not "was not there". An archive built from an export plus a live feed has holes: the months between the day you exported and the day you installed the tracker, a phone you replaced, an app you uninstalled. location_coverage reports every gap of two weeks or more, measured from the data rather than written down, and every tool that comes back empty points at it. An agent that does not know where the holes are will tell you confidently that you have never been to Portugal.
Install
git clone https://github.com/michelgrolet/tars-location-mcp.git
cd tars-location-mcp
pip install -e .You need a Postgres. A container on the same laptop is fine, a free hosted project is fine:
docker run -d --name location-db -e POSTGRES_PASSWORD=local -p 5432:5432 postgres:16mkdir -p ~/.config/tars-location
cat > ~/.config/tars-location/.env <<'EOF'
LOCATION_DATABASE_URL=postgresql://postgres:local@127.0.0.1:5432/postgres
LOCATION_GEOCODER_CONTACT=you@example.com
LOCATION_FALLBACK_TZ=Europe/Paris
EOF
tars-location migrateLOCATION_GEOCODER_CONTACT has no default on purpose. Nominatim's usage policy asks for an address they can reach you at; without one you are an anonymous scraper and they are within their rights to block you.
Fill it
The past: a Google Timeline export
Google keeps Timeline on the phone now, so a Takeout of it holds settings only. Export from the device: Settings > Location > Location services > Timeline > Export Timeline data. That gives you a JSON file.
tars-location import ~/Downloads/location-history.json --geocode 200
tars-location detect-trips
tars-location statusFour export shapes are handled, because which one you get depends on the phone and on which door you exported through: the on-device semanticSegments, the same segments as a bare list, classic Takeout timelineObjects, and classic locations records. Re-running is the normal case: every export overlaps the last, every insert is on conflict do nothing, and a second pass adds only what is new.
Geocoding is deliberately not part of the insert. Nominatim allows one call a second and an export brings a thousand new places, so --geocode N drains N of them and the rest happen in the background:
tars-location enrich --geocode 25 # on a timer, every few minutesThe present: OwnTracks
tars-location token add --label pixel # prints the token once
tars-location serve --port 8080Point OwnTracks at it in HTTP mode, with the token as the password under Authentication. Put a reverse proxy doing TLS in front: the endpoint refuses to bind anything but loopback until you tell it one is there, because a bearer token over plain HTTP is a token in every hop's logs.
Connect an agent
# Codex
codex mcp add location \
--env LOCATION_ENV_FILE="$HOME/.config/tars-location/.env" \
-- uvx --from git+https://github.com/michelgrolet/tars-location-mcp tars-location-mcp
# Claude Code
claude mcp add -s user location \
-e LOCATION_ENV_FILE="$HOME/.config/tars-location/.env" \
-- uvx --from git+https://github.com/michelgrolet/tars-location-mcp tars-location-mcpAnything that speaks MCP over stdio works. Start a new session after adding the server.
With TARS, optionally
Location Memory is standalone and stays standalone: nothing above needs a particular harness. TARS is a harness for a personal agent that lists this in its extension registry, so if you happen to run it, one command does the clone and the wiring:
claude plugin install location-memory@tarsWhat that adds over the plain MCP server is when the tools fire: TARS puts the trigger in the one file it loads every session, so the agent checks where you were before answering rather than waiting to be told to.
The tools
Tool | What it answers |
| where you are now, which trip, day N of it, how far from home, and whether the fix is stale |
| every stop over a window, in order, with duration and trip |
| cities over a window: time in each, how many separate times, which days |
| the same by country, with the cities inside each |
| where you actually spend time, most first. Also how you find an address you half remember |
| trips newest first, with who was along |
| one trip in full: day by day, every stay, every journey with mode and distance |
| one date end to end |
| kilometres by mode, flights, days away against days at home |
| highest, fastest, farthest, the four compass extremes, longest flight, most cities in a day |
| where you have lived and when |
| what the archive holds, per source, and every gap |
| trips shared with a person, both directions. Needs the people bridge |
| days spent with someone and where they landed, trip or not. Needs the people bridge |
| log that someone was with you over a date range, times optional. Needs the people bridge |
| read-only SELECT for anything the rest does not shape |
| the chance of rain where you are, counted over ~120 ensemble members |
| what it is doing outside right now, and the next twelve hours |
| the days ahead: highs, rain, wind, UV, sunrise |
| the same forecast from seven national weather services, side by side |
| what the weather actually was on a past day, at the place you spent it |
Every windowed answer carries the period and timezone it used, and the number of stays it looked at. An answer that does not say what it covers is not an answer.
Weather, at coordinates it already has
An agent that knows where you are can answer the weather question you actually asked. Not what is the forecast for 48.89, 2.28 — will it rain here today, and on day four of the trip, and was it raining that Tuesday in Lisbon. The archive supplies the position, so none of these need one.
you: will it rain today?
will_it_rain()
62 %, likely. 1.4 mm expected, wettest around 17:00.
Dry from 09:00 to 14:00.
ECMWF 71 %, DWD 66 %, NOAA 49 % — 122 members, they broadly agree.Three things this does that a weather widget does not:
A chance of rain is counted, not read off. A single forecast cannot produce a probability. Three centres each run their model dozens of times from slightly perturbed starting states, and the share of those runs that ends up wet is the chance of rain. will_it_rain reads all ~120 members from ECMWF's ENS, DWD's ICON-EPS and NOAA's GEFS and counts them. Each centre is weighted equally rather than each member, or ECMWF's 51 members would outvote GEFS's 31 on nothing but ensemble size.
Disagreement is reported rather than averaged away. When the three centres land within 15 points, the number is worth trusting. When they do not, the answer says so, because a confident 40 % and a coin-flip 40 % should not read the same. weather_models is the same idea one level down: the deterministic run from seven independent services — ECMWF, NOAA, DWD, Météo-France, the Met Office, Environment Canada, JMA — with their spread.
"Best models" means independent centres, not a longer list. Each _seamless model chains that centre's own high-resolution regional model over its domain into its global one outside it: in France Météo-France is AROME at 1.3 km, over the US NOAA is HRRR at 3 km. Models that are only regional with someone else's global run behind them are deliberately left out — outside their domain they return ECMWF again, and a panel that counts the same forecast twice reports agreement it has not got.
Everything goes through Open-Meteo, free for non-commercial use and no key required. LOCATION_WEATHER_API_KEY switches to their commercial endpoints if you have a plan; LOCATION_WEATHER_UNITS=imperial switches the whole thing to °F, mph and inches.
Any of the five takes a place (matched against your own archive first, so a place you have been resolves to the spot you stood on rather than the centroid of the city) or a lat/lon pair. With neither, the question is about where you are, which is what it almost always is.
Trips are detected, not entered
A trip is a run of days spent outside the country you live in, or more than 100 km from home. That definition needs to know where home was at the time, which is why home is a timeline rather than a setting: anyone who has moved has several, and measuring a 2019 day against a 2025 address gets every distance wrong.
tars-location detect-tripsRuns are broken by a gap of more than a month, so a hole in the archive does not weld two visits into one four-year trip. A name you typed yourself is never overwritten: name_is_auto goes false the moment you rename a trip, and re-detection leaves it alone. Without that flag every re-run silently renames "Honeymoon" back to "Italy - June 2025".
People, optionally
"Who was I with in Lisbon" is the question a location archive cannot answer alone, and the one people actually ask. It needs a table of people, which is a different product with a different lifecycle, so it is a bridge and not a dependency:
tars-location migrate --with-people-bridgeIt refuses to run unless a people table exists, and the core schema never references one. Built against people-memory; any table with id, full_name, current_org and current_role works. Without the bridge, who_was_there says so plainly rather than returning a database error for an agent to misread.
Half of "who was I with" is not on a trip, though. A weekend at a friend's, an evening, a week at your parents' are none of them runs of nights far from home, so the archive never detects them. record_together is the other half: a window you draw yourself on a person, with times optional.
you: I was in Lisbon with Ana from the 11th to the 13th
record_together(person="Ana", since="2025-03-11", until="2025-03-13")
3 days · Lisbon, Portugal · Lisbon — March 2025Only who and when are stored. Cities, countries, days and the trip come from the archive at read time, so nothing about a place is ever written onto a person and nothing goes stale as the archive fills in. Dates with no clock time mean local midnights where you were standing, resolved from the archive itself: 2025-03-11 typed in Paris for a day spent in San Francisco means midnight in San Francisco, and the client is never asked to know that. with_me reads it back, and a window that covers a detected trip also shows up under who_was_there with via: "range" next to the people tagged on the trip by hand.
Security
This is the most personal database most people will ever own. Someone with a copy knows where you sleep.
The ingest endpoint needs a bearer token, compared in constant time against
location_auth, and it only ever inserts. The credential a phone carries cannot be used to read your history back out.It refuses to bind a public interface without TLS in front, because a bearer token over plain HTTP is a token in every hop's logs.
location_sqlis read-only enforced by Postgres, not by asking a model nicely: aset transaction read onlyblock with a statement timeout, rolled back at the end. An agent will eventually be handed a query by a web page it was summarizing, and the guard has to hold when it is.No credential is ever in the repo. The connection string lives in an env file outside it.
Full threat model, including what is not defended: SECURITY.md.
Tests
pytestThe parsers, the time maths and the guards run with no database. The schema tests need a real Postgres, because a migration reviewed by reading is a guess:
docker run -d --name location-test -e POSTGRES_PASSWORD=test -p 5433:5432 postgres:16
LOCATION_TEST_DATABASE_URL=postgresql://postgres:test@127.0.0.1:5433/postgres pytestCI runs both against Postgres 14 and 16, on Python 3.10 and 3.13.
Requirements
Python 3.10+, Postgres 13+, and psycopg. Nothing else: the geocoder, the HTTP endpoint and the JSON-RPC server are all standard library. A location archive is the wrong place to carry a dependency tree.
Not here yet
Polarsteps import, and a browser map over location_v_stays. Both exist in a private tree and are not extracted.
MIT.
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
- AlicenseNot gradedqualityDmaintenanceSelf-hosted semantic memory for AI agents. Save worklogs, decisions, and notes via MCP, then recall them across sessions by meaning rather than keyword. Backed by Postgres + pgvector with local embeddings (multilingual-e5-base).1MIT
- AlicenseAqualityBmaintenanceA personal memory MCP server that ingests AI agent conversation logs from multiple platforms into a searchable PostgreSQL+pgvector database, enabling cross-session recall of past reasoning and decisions.6MIT
- AlicenseNot gradedqualityCmaintenanceA private, local-first MCP server that gives any AI long-term memory — its own diary. Zero models, zero network, zero subscription; smarter search than Notion, running entirely on your machine.MIT
- AlicenseAqualityBmaintenanceA local-first, privacy-first MCP server that passively indexes personal digital activity (screenshots, clipboard, notes, downloads, links) into a local database, enabling LLMs like Claude to access your context without cloud storage.4MIT
Related MCP Connectors
Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
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/michelgrolet/tars-location-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server