# PESEL/NIP/REGON Validator (remote · apished.com)

Validates Polish PESEL, NIP, and REGON checksums; PESEL also decodes birth date and sex.

- Trust score: 66/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-20

## Components

- remote · `apished.com`: 66/100 (this document), [markdown](https://verifymcp.io/servers/com-apished-pesel-nip-regon-validator/mcp-v1-idvalidate.md), [page](https://verifymcp.io/servers/com-apished-pesel-nip-regon-validator/mcp-v1-idvalidate)

## Channel facts

- Endpoint: `https://apished.com/mcp/v1/idvalidate`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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-20.

- **Endpoint Security**: 60/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 3 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 80/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 394 tokens (~131/item across 3 items; 3 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 7/100
  - Stability observed for 2 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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-apished-pesel-nip-regon-validator https://apished.com/mcp/v1/idvalidate
```

### Codex

```toml
[mcp_servers.com-apished-pesel-nip-regon-validator]
url = "https://apished.com/mcp/v1/idvalidate"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-apished-pesel-nip-regon-validator": {
      "type": "remote",
      "url": "https://apished.com/mcp/v1/idvalidate",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-apished-pesel-nip-regon-validator --url https://apished.com/mcp/v1/idvalidate --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-apished-pesel-nip-regon-validator:
    url: "https://apished.com/mcp/v1/idvalidate"
```

### Other

```json
{
  "mcpServers": {
    "com-apished-pesel-nip-regon-validator": {
      "type": "http",
      "url": "https://apished.com/mcp/v1/idvalidate"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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-20 (score 66, +1)

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

### 2026-08-19 (score 65, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-18 (score 65)

First indexed and scored.

## MCP tools (3)

### `nip_validate` (~96 tokens)

Validates the checksum of a 10-digit Polish tax identification number (NIP). Checksum uses weights 6 5 7 2 3 4 5 6 7 over the first 9 digits; sum mod 11 must equal the 10th digit. A sum mod 11 of 10 is itself invalid.

Input parameters:

- `value` (string, required): digits-only identifier to validate (no spaces or dashes)

Output parameters:

- `reason` (string)
- `valid` (boolean)

### `pesel_validate` (~128 tokens)

Validates the checksum of an 11-digit Polish national identification number (PESEL). Checksum uses weights 1 3 7 9 1 3 7 9 1 3 over the first 10 digits; control digit is (10 - sum mod 10) mod 10. On success also decodes the date of birth and sex embedded in the number; a checksum-valid number with an impossible calendar date (e.g. Feb 30) is still reported invalid.

Input parameters:

- `value` (string, required): digits-only identifier to validate (no spaces or dashes)

Output parameters:

- `birthDate` (string)
- `reason` (string)
- `sex` (string)
- `valid` (boolean)

### `regon_validate` (~170 tokens)

Validates the checksum of a 9- or 14-digit Polish business registry number (REGON). 9-digit: weights 8 9 2 3 4 5 6 7 over the first 8 digits, sum mod 11 (10 mapped to 0) must equal the 9th digit. 14-digit: the first 9 digits must themselves be a valid 9-digit REGON, and weights 2 4 8 5 0 9 7 3 6 1 2 4 8 over the first 13 digits (sum mod 11, 10 mapped to 0) must equal the 14th digit.

Input parameters:

- `value` (string, required): digits-only identifier to validate (no spaces or dashes)

Output parameters:

- `reason` (string)
- `valid` (boolean)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-apished-pesel-nip-regon-validator/mcp-v1-idvalidate#diagnostics

## Score history

- 2026-08-20: 66
- 2026-08-19: 65
- 2026-08-18: 65

## Links

- Remote endpoint: https://apished.com/mcp/v1/idvalidate
- Website: https://apished.com/
- Changelog RSS feed: https://verifymcp.io/servers/com-apished-pesel-nip-regon-validator/mcp-v1-idvalidate.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-apished-pesel-nip-regon-validator/mcp-v1-idvalidate.json
- HTML version of this page: https://verifymcp.io/servers/com-apished-pesel-nip-regon-validator/mcp-v1-idvalidate
