Fair meeting point discovery for AI agents with isochrone-based travel time fairness
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"rendezvous": {
"args": [
"rendezvous-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Nostr: npub1mgvlrnf5hm9yf0n5mf9nqmvarhvxkc6remu5ec3vf8r0txqkuk7su0e7q2
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'rendezvous-mcp' 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 rendezvous-mcp against OSV.dev.
Click any tool to inspect its schema.
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 / productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for dev.forgesworn/rendezvous-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Nostr: npub1mgvlrnf5hm9yf0n5mf9nqmvarhvxkc6remu5ec3vf8r0txqkuk7su0e7q2
Fair meeting points for AI — isochrone-based fairness, not naive midpoints.
MCP server for AI-driven meeting point discovery. Give your AI the ability to answer "where should we meet?" using real travel times, venue availability, and fairness algorithms.
Works out of the box — free public routing, no API keys needed. Self-host Valhalla for unlimited queries, or use L402 Lightning credits for our hosted endpoint.
| Tool | Description |
|---|---|
score-venues | Score candidate venues by travel time fairness for 2–10 participants |
search-venues | Search for venues near a location using OpenStreetMap |
get-isochrone | Get a reachability polygon (everywhere reachable within N minutes) |
get-directions | Get directions between two points with turn-by-turn steps |
store-routing-credentials | Store L402 macaroon + preimage after Lightning payment |
Add to your MCP client config (Claude Code, Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"rendezvous": {
"command": "npx",
"args": ["rendezvous-mcp"]
}
}
}
Then ask your AI: "Where's a fair place for Alice in London, Bob in Bristol, and Carol in Birmingham to meet for lunch?"
For ChatGPT, remote AI agents, or any client that connects over HTTP:
TRANSPORT=http npx rendezvous-mcp
Starts a Streamable HTTP server on port 3002 with the MCP endpoint at /mcp.
In ChatGPT settings, add an MCP server with:
http://your-host:3002/mcp| Variable | Default | Description |
|---|---|---|
TRANSPORT | stdio | Transport mode: stdio or http |
PORT | 3002 | HTTP server port (HTTP mode only) |
HOST | 0.0.0.0 | HTTP bind address (HTTP mode only) |
VALHALLA_URL | https://routing.trotters.cc | Routing engine URL |
OVERPASS_URL | Public endpoints | Venue search API |
For unlimited queries with no rate limits, run your own Valhalla instance:
{
"mcpServers": {
"rendezvous": {
"command": "npx",
"args": ["rendezvous-mcp"],
"env": {
"VALHALLA_URL": "http://localhost:8002"
}
}
}
}
search-venues to find candidate venues near the areascore-venues with participants + candidates — returns ranked results with travel times and fairness scoresFor deeper analysis, the AI can use get-isochrone to visualise reachability and get-directions for turn-by-turn navigation.
The default routing endpoint (routing.trotters.cc) offers free requests. When the free tier is exhausted, tools return a payment_required response with a Lightning invoice. After payment, call store-routing-credentials to store the macaroon for the session.
Self-hosted Valhalla has no payment requirement.
Thin MCP wrapper over rendezvous-kit