mcp-server-simpsons-cities
Finds real U.S. cities near a given zip code whose names match characters, locations, or businesses from The Simpsons, using a database scraped from the Fandom Wikisimpsons pages.
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., "@mcp-server-simpsons-citiesfind Simpsons-named cities near 90210"
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.
ποΈ mcp-server-simpsons-cities
An MCP (Model Context Protocol) server that finds real U.S. cities near a given zip code whose names match anything from The Simpsons β not just towns like Springfield and Shelbyville, but character names, businesses, and other references from the show. If there's a real town near you called "Maggie," this tool finds it.
Built as an end-to-end MCP integration: a Python server exposing a live tool to Claude Desktop, backed by a real geospatial API and a self-scraped reference dataset.
Why this project
This started as a fun, low-stakes way to explore the full MCP development lifecycle β from writing and debugging a Python server, to authenticating against a third-party API, to wiring it into a real LLM client and iterating based on live tool-call failures. It touches:
API integration β authenticated third-party REST API (GeoNames), with real debugging around HTTPS certificate mismatches, auth propagation delays, and rate limits
Data engineering β a standalone scraper that paginates a MediaWiki API, dedupes, and filters noisy category data into a clean reference dataset
Protocol-level tool design β exposing a single well-scoped tool via FastMCP rather than forcing an LLM client to chain multiple raw API calls itself
Environment & secrets management β
.env-based config, gitignored credentials, environment variables passed cleanly into a subprocess-launched serverClient integration & debugging β wiring the server into Claude Desktop's
claude_desktop_config.json, and using the MCP Inspector plus stderr logging to diagnose failures that only appeared once the tool was actually called end-to-end
Related MCP server: MCP-Geo
Demo
Live tool call in Claude Desktop (used here as the MCP client) β a natural-language question, routed automatically to the right tool, answered with a live API result:
β True positive β a real match found

β Correct negative β no match, and Claude proactively offers next steps

Architecture
βββββββββββββββββββββββ
"Any Simpsons- β Claude Desktop β
named cities β (MCP Client) β
near 62701?" ββββΆβ β
ββββββββββββ¬ββββββββββββ
β MCP protocol (stdio)
βΌ
βββββββββββββββββββββββ
β find_simpsons_ β
β cities.py β
β (FastMCP server) β
ββββββββββββ¬ββββββββββββ
β
βββββββββββββββ΄ββββββββββββββ
βΌ βΌ
ββββββββββββββββββββββ βββββββββββββββββββββββββ
β GeoNames API β β data/simpsons_ β
β (nearby cities by β β names.json β
β zip + radius) β β (pre-built, scraped β
ββββββββββββββββββββββ β from Wikisimpsons) β
βββββββββββββββββββββββββRequest flow:
User asks a natural-language question in Claude Desktop.
Claude Desktop, acting as the MCP client, recognizes the intent and calls the
get_simpsons_citytool over the MCP protocol.The server queries GeoNames for real cities within a radius of the given zip code.
Each city name is checked (case-insensitively) against a locally-cached Simpsons name database.
Matches β or a clear "no matches" result β are returned to Claude, which formats a natural-language response.
Tools exposed
Tool | Description |
| Finds real cities near a U.S. zip code that share a name with a character, location, or business from The Simpsons. |
Tech stack
FastMCP (
mcp[cli], pinned to v1.x) β MCP server frameworkhttpx β async HTTP client for both the GeoNames API and the Wikisimpsons scraper
uv β Python dependency & environment management
GeoNames β free geospatial API for zip-code-radius city lookups
Wikisimpsons (Fandom) β source data via the MediaWiki
categorymembersAPIClaude Desktop β MCP client used for testing and live usage
MCP Inspector β interactive tool-testing UI during development
Getting started
Prerequisites
Python 3.13+
A free GeoNames account with the free web service enabled on your account page β this is a separate step from registering, and easy to miss.
Install
git clone https://github.com/cindyhsugit/mcp-server-simpsons-cities.git
cd mcp-server-simpsons-cities
uv syncConfigure
Create a .env file in the project root:
GEONAMES_USERNAME=your_geonames_username
.envis gitignored β never commit real credentials.
(Optional) Rebuild the Simpsons name database
A pre-built data/simpsons_names.json ships with the repo. To refresh it from Wikisimpsons:
uv run build_data.pyThis paginates through Category:Characters, Category:Locations, and Category:Businesses via the Fandom MediaWiki API, dedupes results, and writes a clean JSON list.
Running & testing
Standalone (sanity-check startup):
uv run find_simpsons_cities.pyInteractive testing (requires Node.js):
uv run mcp dev find_simpsons_cities.pyOpens the MCP Inspector in your browser for calling get_simpsons_city directly with real inputs and inspecting raw responses.
Connecting to Claude Desktop
This project was built and tested using Claude Desktop as the MCP client.
Open your config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add:
{
"mcpServers": {
"simpsons-cities": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/mcp-server-simpsons-cities",
"run",
"find_simpsons_cities.py"
],
"env": {
"GEONAMES_USERNAME": "your_geonames_username"
}
}
}
}Fully quit and reopen Claude Desktop, then just ask:
"Are there any Simpsons-named cities near zip code 62701?"
Project structure
mcp-server-simpsons-cities/
βββ find_simpsons_cities.py # MCP server β defines get_simpsons_city tool
βββ build_data.py # Standalone scraper β builds data/simpsons_names.json
βββ data/
β βββ simpsons_names.json # Scraped Simpsons character/location/business names
βββ screenshots/
β βββ example-match-springfield.png
β βββ example-no-match-92840.png
βββ pyproject.toml
βββ .env # (gitignored) GeoNames credentials
βββ README.mdEngineering notes / lessons learned
A few real issues hit and resolved during development, kept here for transparency:
mcpv2 breaking change β a new major SDK release renamedFastMCPtoMCPServer, silently breakingfrom mcp.server.fastmcp import FastMCP. Fixed by pinningmcp[cli]>=1.28,<2inpyproject.toml.GeoNames certificate mismatch β
https://api.geonames.orgserves a certificate valid forgeonames.net, not.org, causing browser/TLS warnings. Resolved by using plain HTTP for the free-tier endpoint (the pattern GeoNames' own official examples use).GeoNames "premium-only" trap β
secure.geonames.orglooks like the natural HTTPS alternative, but it's a premium-tier-only endpoint and returns401for free accounts.Silent account activation delay β enabling the free web service on a GeoNames account doesn't always propagate instantly; requests can 401 for several minutes after enabling before working.
Debuggability β added structured
stderrlogging in the HTTP layer specifically so failures surface in the MCP Inspector / Claude Desktop's developer log instead of collapsing into a generic error message.
Known limitations
30 km search radius β the free-tier cap on GeoNames'
findNearbyPostalCodesendpoint.Exact-match only β a city name must match a Simpsons name exactly (case-insensitive). "Springfield Heights" would not match "Springfield." Fuzzy/substring matching is a natural next step.
US zip codes only β scoped to
country=USfor now.
License
MIT
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
- -license-qualityBmaintenanceMCP Server for the Google Maps API.Last updated11,86888,579MIT
- MIT
- Alicense-qualityDmaintenanceA lightweight mcp server that tells you exactly where you are.Last updated4MIT
- Flicense-qualityDmaintenanceAn MCP server implementation that enables users to interact with the PokeAPI to fetch Pokemon information through natural language queries.Last updated
Related MCP Connectors
Geo-based flight search MCP server. Find more flights between any two places on earth
A basic MCP server to operate on the Postman API.
Official remote MCP server for Color Me Shop.
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/cindyhsugit/mcp-server-simpsons-cities'
If you have feedback or need assistance with the MCP directory API, please join our Discord server