Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"geographic-data": {
"env": {
"LOC8N_API_KEY": "your-api-key"
},
"command": "mcp-geographic-data"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for the loc8n Geographic Data API. Exposes U.S. demographics, housing, mortgage, migration, employment, and geographic data as tools for any MCP-compatible client (Claude Desktop, Claude Code, Cursor, etc.).
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@gener8v/mcp-geographic-data' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @gener8v/mcp-geographic-data against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in maps / data
Query and manage PostgreSQL databases directly from AI assistants
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP Security Weekly
Get CVE alerts and security updates for Geographic Data MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for the loc8n Geographic Data API. Exposes U.S. demographics, housing, mortgage, migration, employment, and geographic data as tools for any MCP-compatible client (Claude Desktop, Claude Code, Cursor, etc.).
npm install -g @gener8v/mcp-geographic-data
Set your API key:
export LOC8N_API_KEY="your-api-key"
Get a key at loc8n.com.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"geographic-data": {
"command": "mcp-geographic-data",
"env": {
"LOC8N_API_KEY": "your-api-key"
}
}
}
}
Add to your project's .mcp.json:
{
"mcpServers": {
"geographic-data": {
"command": "mcp-geographic-data",
"env": {
"LOC8N_API_KEY": "your-api-key"
}
}
}
}
Connect any MCP-compatible client directly to the hosted server at mcp.loc8n.com. Pass your API key as a query parameter or Authorization header:
SSE endpoint: https://mcp.loc8n.com/sse?apiKey=YOUR_API_KEY
Or with a Bearer token:
GET https://mcp.loc8n.com/sse
Authorization: Bearer YOUR_API_KEY
Each connection gets an isolated session — your API key is used for all requests and usage is tracked against your account.
Add to your Cursor MCP settings:
{
"mcpServers": {
"geographic-data": {
"url": "https://mcp.loc8n.com/sse?apiKey=YOUR_API_KEY"
}
}
}
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"geographic-data": {
"serverUrl": "https://mcp.loc8n.com/sse?apiKey=YOUR_API_KEY"
}
}
}
Run the server locally for development or custom deployments:
mcp-geographic-data --transport sse --port 3100
Endpoints:
http://localhost:3100/ssehttp://localhost:3100/messageshttp://localhost:3100/health| Tool | Description |
|---|---|
lookup_zip_code | Get details for a ZIP code (city, county, state, coordinates) |
search_zip_codes_by_city | Find ZIP codes for a city/state |
find_zip_codes_in_radius | Find ZIP codes within a radius of a point |
calculate_zip_code_distance | Calculate distance between two ZIP codes |
search_areas | Search counties, states, or metro areas by name |
| Tool | Description |
|---|---|
get_demographics | Full demographic profile (population, income, education, etc.) |
get_demographics_category | Single demographic category in detail |
get_demographics_trend | Year-over-year demographic trends |
compare_demographics | Side-by-side comparison of two areas |
| Tool | Description |
|---|---|
get_fair_market_rent | HUD Fair Market Rent by bedroom count |
get_fmr_trend | Fair Market Rent trends over time |
| Tool | Description |
|---|---|
get_mortgage_summary | HMDA mortgage origination summary |
get_mortgage_trends | Mortgage lending trends over time |
compare_mortgage | Side-by-side mortgage comparison of two areas |
| Tool | Description |
|---|---|
get_migration_summary | IRS SOI migration inflows/outflows |
get_migration_flows | Top origin/destination flows for an area |
get_migration_trends | Migration trends across year pairs |
| Tool | Description |
|---|---|
get_employment | LODES employment profile (jobs, sectors, wages) |
get_employment_trend | Employment trends over time |
compare_employment | Side-by-side employment comparison |
get_commute_flows | Top commute origins/destinations |
| Tool | Description |
|---|