# dev.forgesworn/rendezvous-mcp (npm · rendezvous-mcp)

Fair meeting point discovery for AI agents with isochrone-based travel time fairness

- Trust score: 75/100 (medium)
- Change this week: +51
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `rendezvous-mcp`: 75/100 (this document), [markdown](https://verifymcp.io/servers/dev-forgesworn-rendezvous-mcp/rendezvous-mcp.md), [page](https://verifymcp.io/servers/dev-forgesworn-rendezvous-mcp/rendezvous-mcp)

## Channel facts

- Registry: `npm`
- Package: `rendezvous-mcp`
- Version: `1.1.3`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (124 of 126), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (124 of 126), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to forgesworn/rendezvous-mcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 112 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 625 tokens (~125/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add dev-forgesworn-rendezvous-mcp -- npx -y rendezvous-mcp
```

### Codex

```bash
codex mcp add dev-forgesworn-rendezvous-mcp -- npx -y rendezvous-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dev-forgesworn-rendezvous-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "rendezvous-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add dev-forgesworn-rendezvous-mcp --command npx --arg -y --arg rendezvous-mcp
```

### Hermes

```yaml
mcp_servers:
  dev-forgesworn-rendezvous-mcp:
    command: "npx"
    args: ["-y", "rendezvous-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "dev-forgesworn-rendezvous-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "rendezvous-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 75, +21)

- [security regression] Known CVEs: partial → unverified
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified
- [functional regression] Dependency health: partial → unverified
- [functional improvement] Schema quality: unverified → good

### 2026-08-01 (score 54, +8)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 46, +22)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: fail

### 2026-07-27 (score 24)

First indexed and scored.

## MCP tools (5)

### `score-venues` (~135 tokens)

Score candidate venues by travel time fairness for multiple participants. Computes travel times from each participant to each venue and ranks by fairness strategy. The AI should suggest venues (from its own knowledge or via search-venues) and pass them here for scoring.

Input parameters:

- `fairness` (string): Scoring strategy: min_max (default, minimise longest journey), min_total (minimise total travel), min_variance (equalise travel times)
- `participants` (array, required): Participant locations (2–10 people)
- `transport_mode` (string, required): How participants will travel
- `venues` (array, required): Candidate venues to score (1–50)

### `search-venues` (~156 tokens)

Search for venues (pubs, cafes, restaurants, parks, etc.) near a location using OpenStreetMap data. Returns name, coordinates, type, and OSM ID. Use this when you need comprehensive local venue data that may not be in your training knowledge.

Input parameters:

- `lat` (number, required): Centre latitude
- `lon` (number, required): Centre longitude
- `radius_km` (number): Search radius in km (default 5)
- `venue_types` (array, required): Venue types to search: pub, cafe, restaurant, park, library, playground, community_centre, bar, fast_food, garden, theatre, arts_centre, fitness_centre, sports_centre, escape_game, swimming_pool, ser…

### `get-isochrone` (~88 tokens)

Get a reachability polygon showing everywhere reachable from a point within a given travel time. Returns a GeoJSON polygon. Useful for understanding how far someone can travel.

Input parameters:

- `lat` (number, required): Latitude of starting point
- `lon` (number, required): Longitude of starting point
- `time_minutes` (number, required): Maximum travel time in minutes
- `transport_mode` (string, required): Travel mode

### `get-directions` (~64 tokens)

Get directions between two points with distance, duration, and turn-by-turn steps. Returns a GeoJSON LineString of the route geometry.

Input parameters:

- `from` (object, required): Starting point
- `to` (object, required): Destination point
- `transport_mode` (string, required): Travel mode

### `store-routing-credentials` (~105 tokens)

Store L402 payment credentials (macaroon + preimage) after paying a routing invoice. Call this after the user has paid the Lightning invoice returned by a payment_required response. Once stored, all subsequent routing calls (score-venues, get-isochrone, get-directions) will authenticate automatically.

Input parameters:

- `macaroon` (string, required): The macaroon from the payment_required response
- `preimage` (string, required): The payment preimage obtained after paying the invoice

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/dev-forgesworn-rendezvous-mcp/rendezvous-mcp#diagnostics

## Score history

- 2026-08-03: 75
- 2026-08-02: 75
- 2026-08-01: 54
- 2026-07-31: 46
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/rendezvous-mcp
- Socket report: https://socket.dev/npm/package/rendezvous-mcp
- Repository: https://github.com/forgesworn/rendezvous-mcp
- Changelog RSS feed: https://verifymcp.io/servers/dev-forgesworn-rendezvous-mcp/rendezvous-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/dev-forgesworn-rendezvous-mcp/rendezvous-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/dev-forgesworn-rendezvous-mcp/rendezvous-mcp
