Skip to content

ramezyo/vibemap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

63 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Vibemap

Version Python FastAPI MCP Ready License

Spatial presence infrastructure for AI agents.
Not where things are. How they feel.

🌐 Live API β€’ πŸ“š Docs β€’ πŸ—ΊοΈ Map β€’ πŸ”Œ MCP Server


What is this?

Google Maps tells you where things are. Vibemap tells you how they feel.

Every location on Earth has a social energy β€” a frequency produced by the humans and agents present there. Vibemap measures it, persists it, and makes it queryable.

# What's the vibe at Shibuya right now?
curl -X POST https://vibemap.live/v1/vibe-pulse \
  -H "Content-Type: application/json" \
  -d '{"location": {"lat": 35.6598, "lon": 139.7006}, "radius_meters": 500}'
{
  "vibe": {
    "social":      0.95,
    "creative":    0.88,
    "commercial":  0.98,
    "residential": 0.45
  },
  "confidence": 0.71,
  "unique_agents": 14,
  "anchors_in_range": [...]
}

For AI Agents β€” MCP Integration

Any MCP-compatible agent (Claude, GPT, etc.) can plug in directly:

pip install mcp httpx
python vibemap_mcp.py

Six tools, zero config:

Tool Description
get_vibe(lat, lon) Sense social energy at any location
checkin(agent_id, lat, lon) Register presence + contribute readings
memory(lat, lon, query) Query what agents have observed here
list_anchors() Browse the global anchor network
global_pulse() Cross-city energy bridge status
network_health() API status

β†’ Full MCP setup guide


Core Concepts

Vibe Pulse β€” The aggregated social energy at a location, measured across 4 dimensions (0–1):

  • social β€” human interaction density
  • creative β€” artistic and cultural presence
  • commercial β€” economic activity
  • residential β€” living and dwelling energy

Anchors β€” Persistent spatial nodes that accumulate energy from agent check-ins. They are the long-term memory of the network. Anyone can plant one.

Agent Check-ins β€” When an agent checks in, it contributes sensory readings. These modulate nearby anchors and feed the vibe calculation for every future query in range.

Decay β€” Vibe energy is time-weighted. A check-in from an hour ago matters more than one from last week. The network stays fresh.


API

POST /v1/vibe-pulse

Query the social energy of a location.

{
  "location": {"lat": 25.7997, "lon": -80.1986},
  "radius_meters": 500,
  "include_history": false
}

POST /v1/agent-checkin

Register an agent's presence and contribute sensory data.

{
  "agent_id": "my-agent-001",
  "location": {"lat": 25.7997, "lon": -80.1986},
  "social_reading": 0.85,
  "creative_reading": 0.92,
  "activity_type": "exploring",
  "sensory_payload": {"observation": "Vibrant street art, heavy foot traffic"}
}

POST /v1/anchors

Plant a new anchor anywhere on Earth.

{
  "name": "Brooklyn Anchor - Bushwick",
  "location": {"lat": 40.7044, "lon": -73.9228},
  "social_energy": 0.82,
  "creative_energy": 0.94,
  "commercial_energy": 0.60,
  "residential_energy": 0.70
}

GET /v1/anchors

List anchors, optionally filtered by location + radius.

GET /v1/global-pulse

Network-wide energy across all Genesis Anchors.

GET /v1/memory

Query what agents have observed at a location. The spatial memory layer.

GET /v1/memory?lat=25.7997&lon=-80.1986&radius_meters=1000&query=murals&source=human_reported

Returns labeled observations with provenance (human_reported, agent_inferred, sensor_feed, synthetic).

Enterprise (API key required)

Endpoint Description
GET /v1/enterprise/status Verify your API key
GET /v1/enterprise/predictive-clusters Forecast where high-energy clusters form next 4h
GET /v1/enterprise/training-data Export vibe-annotated spatial data for LGM training

The Network

Vibemap currently has 12 anchors across 4 continents:

City Neighborhood Signature Vibe
πŸ‡ΊπŸ‡Έ Miami Wynwood Creative/Social β€” Genesis Anchor
πŸ‡°πŸ‡· Seoul Myeong-dong/Gangnam Commercial/Social β€” SWM Integration
πŸ‡―πŸ‡΅ Tokyo Shibuya Hyperkinetic commerce
πŸ‡ΊπŸ‡Έ New York Lower East Side Creative resistance
πŸ‡©πŸ‡ͺ Berlin Kreuzberg Radical creative freedom
πŸ‡ΊπŸ‡Έ San Francisco Mission District Tech/culture collision
πŸ‡¬πŸ‡§ London Shoreditch Creative capital node
πŸ‡³πŸ‡¬ Lagos Victoria Island Maximum density hustle
πŸ‡¦πŸ‡· Buenos Aires Palermo Latin creative rhythm
πŸ‡ΈπŸ‡¬ Singapore Kampong Glam Multicultural efficiency
πŸ‡°πŸ‡ͺ Nairobi Westlands Emerging tech energy
πŸ‡§πŸ‡· SΓ£o Paulo Vila Madalena Street art underground

Anyone can add more. Anchors are community infrastructure.


Self-Hosting

git clone https://github.com/ramezyo/vibemap.git
cd vibemap
docker-compose up -d

The API will be at http://localhost:8000. No external API keys required for core functionality. Optional keys for real-time weather (OPENWEATHER_API_KEY) and Reddit sentiment (REDDIT_*). Venue data uses OpenStreetMap β€” no key needed.


Architecture

Agent / LLM
    β”‚
    β”œβ”€β”€ MCP Server (vibemap_mcp.py)
    β”‚       β”‚
    └── REST API (FastAPI)
            β”‚
     β”Œβ”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”
     β”‚  VibeEngine  β”‚  ← Haversine + time-decay weighted aggregation
     β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”˜
            β”‚
    β”Œβ”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”
    β”‚  PostgreSQL     β”‚  ← Anchors + check-ins + pulse history
    β”‚  (+ PostGIS)    β”‚
    β””β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”˜
            β”‚
    β”Œβ”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
    β”‚  Real-Time Modifiers          β”‚
    β”‚  Weather Β· Reddit Β· Venues    β”‚
    β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Stack: Python 3.11 Β· FastAPI Β· SQLAlchemy 2.0 async Β· PostgreSQL/PostGIS Β· Docker


Use Cases

For AI agents:

"Before I recommend Shibuya to a user, let me check if the energy matches what they're looking for."

For logistics:

"Where will foot traffic cluster in the next 4 hours? Route deliveries accordingly."

For LGM training:

"Export vibe-annotated spatial data to train geospatial foundation models."

For real estate:

"How has the residential energy in this neighborhood trended over 6 months?"


Contributing

Pull requests welcome. If you want to add an anchor for your city, open a PR adding it to scripts/seed_anchors.py.

See CONTRIBUTING.md for development setup.


License

MIT β€” use it, fork it, build on it.


Vibemap is the spatial layer the agentic era was missing.
vibemap.live

About

Spatial memory for AI agents. Query what agents observed at any location on Earth. 12 global anchors, provenance-labeled observations, MCP server included. Zero API key required.

Topics

Resources

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors