# io.github.fouomene/mcp-server-geodata-placefinder (npm · mcp-server-geodata-placefinder)

MCP GeoData Placefinder: search places, reverse geocode, and find nearby locations.

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

## Components

- npm · `mcp-server-geodata-placefinder`: 70/100 (this document), [markdown](https://verifymcp.io/servers/fouomene-mcp-server-geodata-placefinder/mcp-server-geodata-placefinder.md), [page](https://verifymcp.io/servers/fouomene-mcp-server-geodata-placefinder/mcp-server-geodata-placefinder)

## Channel facts

- Registry: `npm`
- Package: `mcp-server-geodata-placefinder`
- Version: `2.0.0`
- 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**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), 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 (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (GPL-3.0).
  - Actively maintained (last published 70 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 81/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 593 tokens (~118/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **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.

## Install

### Claude

```bash
claude mcp add fouomene-mcp-server-geodata-placefinder -- npx -y mcp-server-geodata-placefinder
```

### Codex

```bash
codex mcp add fouomene-mcp-server-geodata-placefinder -- npx -y mcp-server-geodata-placefinder
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "fouomene-mcp-server-geodata-placefinder": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "mcp-server-geodata-placefinder"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add fouomene-mcp-server-geodata-placefinder --command npx --arg -y --arg mcp-server-geodata-placefinder
```

### Hermes

```yaml
mcp_servers:
  fouomene-mcp-server-geodata-placefinder:
    command: "npx"
    args: ["-y", "mcp-server-geodata-placefinder"]
```

### Other

```json
{
  "mcpServers": {
    "fouomene-mcp-server-geodata-placefinder": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-server-geodata-placefinder"
      ]
    }
  }
}
```

## 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-03 (score 70, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 69, +48)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] License: unverified → pass
- [functional] Licence: GPL-3.0

### 2026-08-01 (score 21, −7)

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

### 2026-07-31 (score 28, −18)

- [security regression] Malware scan: pass → unverified

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

First indexed and scored.

## MCP tools (5)

### `health_check` (~39 tokens)

Check the GeoData Placefinder API status. Returns server status, version, uptime in seconds, and the number of place records loaded in the local cache.

### `search_places` (~228 tokens)

Search for places by name, address, city, postcode, or category. Returns geographic coordinates and place details from the Overture Maps dataset. Use the free-form 'q' parameter for natural language queries, or combine structured fields (name, city, postcode, type) for precise filtering.

Input parameters:

- `city` (string): City or locality (e.g. "London", "New York").
- `limit` (number): Maximum number of results to return (1–20). Default: 5.
- `name` (string): Place or business name (e.g. "Hilton", "McDonald's").
- `postcode` (string): Postal or ZIP code (e.g. "75001", "SW1A 1AA").
- `q` (string): Free-form search string — any combination of name, address, city, or category (e.g. "Eiffel Tower Paris", "cafe New York", "123 Main St London").
- `type` (string): Place category (e.g. "cafe", "restaurant", "hotel", "museum", "hospital").

### `reverse_geocode` (~114 tokens)

Convert geographic coordinates (latitude/longitude) into the nearest human-readable place names and addresses. Useful for answering 'what is near this location?' or 'what is the address of these coordinates?'

Input parameters:

- `lat` (number, required): Latitude in decimal degrees (WGS84), e.g. 48.8584.
- `limit` (number): Maximum number of results to return. Default: 5.
- `lon` (number, required): Longitude in decimal degrees (WGS84), e.g. 2.2945.

### `find_nearest_place` (~107 tokens)

Find the single closest place to a given coordinate within a configurable radius. Optionally filter by name to find the nearest matching business or landmark.

Input parameters:

- `lat` (number, required): Latitude in decimal degrees (WGS84).
- `lon` (number, required): Longitude in decimal degrees (WGS84).
- `max_distance_m` (number): Search radius in metres. Default: 5000.
- `name` (string): Optional name filter — only return a place whose name contains this string.

### `get_place_by_id` (~105 tokens)

Get the full Overture Maps record for a single place by its ID. Returns all available fields: names, addresses, coordinates, confidence score, categories, websites, phones, social profiles, emails, and brand. Place IDs are returned by the search_places, reverse_geocode, and find_nearest_place tools.

Input parameters:

- `id` (string, required): Overture place identifier (format: "overture:place:<uuid>"), returned in the id field of any search result.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/fouomene-mcp-server-geodata-placefinder/mcp-server-geodata-placefinder#diagnostics

## Score history

- 2026-08-03: 70
- 2026-08-02: 69
- 2026-08-01: 21
- 2026-07-31: 28
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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