Skip to main content
ClaudeWave
licklider-ai avatar
licklider-ai

nomue-verifier-mcp

Ver en GitHub

Local MCP server for scoped verification of nomue Protocol Records under explicitly supported bundles

MCP ServersRegistry oficial0 estrellas0 forksJavaScriptApache-2.0Actualizado today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (Apache-2.0)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 9/18/2026
Install in Claude Code / Claude Desktop
Method: NPX · --yes
Claude Code CLI
claude mcp add nomue-verifier-mcp -- npx -y --yes
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "nomue-verifier-mcp": {
      "command": "npx",
      "args": ["-y", "--yes"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

# nomue Record Verifier

Local, issuer-independent verification of nomue Protocol Records for MCP clients.

## Status

`@licklider/nomue-verifier-mcp` is an experimental release-candidate package for Phase 1 local
use. It supports **stdio only**. It does not expose an HTTP endpoint, require an account,
use an API key, or call a Licklider-hosted service.

The server is a thin adapter around the exact npm dependency:

```text
@licklider/nomue-verifier@0.2.1-rc.1
```

It does not implement statistical or Protocol semantics independently.
The published CLI tarball includes `npm-shrinkwrap.json` in addition to exact direct
dependency pins, so npm versions that honor dependency-package shrinkwraps can install
the reviewed runtime tree.

Version `0.2.0-rc.1` updates the exact verifier dependency to carry the df=1 Student-t
center precision correction. It follows the first release candidate under the explicit
verifier-MCP package identity. The experimental `@licklider/nomue-mcp` package remains
historical and will not be repurposed as the future nomue product MCP. The
user-facing name remains **nomue Record Verifier**, the client configuration key remains
`nomue-verify`, and the sole tool remains `verify_nomue_record`. This identity migration
does not expand the scientific scope: the release still accepts only the exact Release 1
Welch bundle identified below.

## Add it to an MCP client

Add this one-line entry inside the client's `mcpServers` object:

```json
"nomue-verify":{"command":"npx","args":["--yes","@licklider/nomue-verifier-mcp@0.2.0-rc.1"]}
```

A complete configuration file is:

```json
{"mcpServers":{"nomue-verify":{"command":"npx","args":["--yes","@licklider/nomue-verifier-mcp@0.2.0-rc.1"]}}}
```

This is the standard shape for macOS, Linux, and MCP clients that resolve `npx`
directly. No environment variables are needed. The first `npx` launch may download npm
dependencies; after installation, verification itself runs locally and does not require
network access.

On Windows, a client that does not resolve npm command shims directly can use this
equivalent entry:

```json
"nomue-verify":{"command":"cmd.exe","args":["/d","/s","/c","npx --yes @licklider/nomue-verifier-mcp@0.2.0-rc.1"]}
```

The repository CI matrix verifies the installed npm command shim and exercises the
installed package entry point on Windows, macOS, and Linux. A clean-profile launch in
Claude Desktop, Cursor, and Cline remains a release gate after the repository and npm
release candidate are public.

[Add nomue Record Verifier to Cursor](cursor://anysphere.cursor-deeplink/mcp/install?name=nomue-verify&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyItLXllcyIsIkBsaWNrbGlkZXIvbm9tdWUtdmVyaWZpZXItbWNwQDAuMi4wLXJjLjEiXX0%3D)

### Cursor Plugin wrapper

This repository also contains a Cursor Plugin manifest at
`.cursor-plugin/plugin.json` and its exact version-pinned `mcp.json`. The wrapper adds
no rules, prompts, credentials, environment variables, or remote services; it installs
the same local stdio server configuration shown above. The manifest identifies the
package as a release candidate rather than implying a stable release.

The checked-in configuration is:

```json
{"mcpServers":{"nomue-verify":{"command":"npx","args":["--yes","@licklider/nomue-verifier-mcp@0.2.0-rc.1"]}}}
```

The manifest makes the repository ready for a clean-profile Cursor Plugin test and
Marketplace review. It is not evidence of a live Cursor Marketplace listing; record
that separately only after Cursor accepts the submission.

## Tool

### `verify_nomue_record`

The tool name is method-neutral because bundle dispatch, rather than the MCP server or
the caller, determines which registered verification semantics apply. The current
release supports only the exact Welch bundle below. Unsupported bundles are refused
without fallback or silent method switching.

**Use when:** you already have a complete nomue Record declaring the exact public
Release 1 bundle
`urn:nomue:bundle:itgc-guarantee:0.2.1-draft.1` and need scoped structural, digest,
admissibility, computability, or two-sided Welch recomputation checks.

**Do not use when:** you have only raw samples and need a new Welch calculation; need
method selection; need an overall scientific-validity or causal judgment; need paired-t,
Wilcoxon, Mann-Whitney, or another method; or have an unsupported Protocol bundle.

Input:

```json
{
  "record_json": "{...complete nomue Record JSON text...}"
}
```

`record_json` is JSON **text**, not a parsed object. Empty and malformed strings are
accepted by the adapter and passed to the verifier. Preserving the original text keeps
strict JSON parsing, duplicate-member rejection, digest verification, and resource-limit
behavior inside the verifier. An MCP string cannot represent a malformed UTF-8 byte
sequence; test that byte-level refusal directly with the npm verifier CLI.

## Result contract

The first MCP text content block is the exact stdout emitted by the pinned verifier CLI
implementation, including its final newline. `structuredContent` contains the same
parsed verifier artifact without a new adapter verdict. MCP result metadata carries:

- the verifier exit code;
- a SHA-256 digest of the exact input JSON text encoded as UTF-8;
- a SHA-256 digest of the exact stdout bytes; and
- the exact verifier npm package identity; and
- the verifier-generated field (`generated_at`) that changes on independent replay.

These metadata fields describe the invocation and replay evidence; they are not a new
verdict or guarantee.

Verifier exit codes retain their existing meanings:

| Code | Meaning |
| --- | --- |
| `0` | A report exists and every applicable scoped check outcome is `pass`. |
| `2` | A scoped check failed, or a parse/canonicalization refusal occurred. |
| `3` | Routing failure or unsupported bundle; no report exists. |
| `4` | Resource-limit safe refusal. |
| `5` | Internal verifier refusal. |

Codes `2` through `5` remain normal, machine-readable verifier artifacts. The MCP call
is marked as a tool error only when the adapter itself cannot produce a verifier report
or refusal.

There is no blanket `VERIFIED` field. Read each scoped check, its version and reason
codes, plus `guarantee_boundary`. A clean report does not establish scientific truth or
scientific validity.

### Exactness and replay

The MCP response preserves the bytes from the **same underlying verifier invocation**;
the input and output SHA-256 metadata make that preservation testable. A separate replay
with `@licklider/nomue-verifier@0.2.1-rc.1` reproduces the substantive artifact exactly, but
the verifier intentionally creates a fresh top-level `generated_at` timestamp on each
run. Therefore two separate invocations cannot honestly be described as byte-identical.
Tests require equality of every other field and byte-for-byte preservation within the
MCP invocation.

To replay independently, save the same `record_json` text and run:

```bash
npx --yes @licklider/nomue-verifier@0.2.1-rc.1 verify ./record.json --format json-compact
```

## Supported environment

| Transport | Operating systems | Node.js | Authentication | Runtime network |
| --- | --- | --- | --- | --- |
| stdio | Linux, macOS, Windows | 20 or 22 | None | Not required |

The package declares `node >=20`; the release CI matrix is configured to exercise Node.js
20 and 22 on all three operating systems. Do not claim an operating-system/client pair
as release-tested until that public CI job and the corresponding clean-profile client
check have passed.

## Registry metadata

`server.json` and the package `mcpName` are aligned for the official MCP Registry:

```text
io.github.licklider-ai/nomue-verifier-mcp
```

The registry artifact advertises only the npm package and stdio transport. Hosted HTTP,
SLA, authentication, logging, and rate limiting are intentionally outside Phase 1.
Prepared publication and directory-submission steps are in
[`registry/SUBMISSIONS.md`](registry/SUBMISSIONS.md).

## Development

From this directory:

```bash
npm ci
npm test
npm run test:cursor-plugin
npm run test:package
```

The package smoke test packs and installs the tarball at a path containing spaces,
starts its generated npm executable shim, lists the tool, calls valid, mismatched, and
empty Records, checks output preservation, and enforces the 10-second startup budget.
That budget covers MCP process startup and tool discovery only. Each verifier call is
a separate resource-bounded child process with a 60-second fail-closed ceiling so a
cold Node.js/tsx launch on a supported host is not misclassified as an MCP startup
failure.

## Security, non-claims, and license

See [SECURITY.md](SECURITY.md), [NON-CLAIMS.md](NON-CLAIMS.md), and
[LICENSE](LICENSE).

Lo que la gente pregunta sobre nomue-verifier-mcp

¿Qué es licklider-ai/nomue-verifier-mcp?

+

licklider-ai/nomue-verifier-mcp es mcp servers para el ecosistema de Claude AI. Local MCP server for scoped verification of nomue Protocol Records under explicitly supported bundles Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-18.

¿Cómo se instala nomue-verifier-mcp?

+

Puedes instalar nomue-verifier-mcp clonando el repositorio (https://github.com/licklider-ai/nomue-verifier-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar licklider-ai/nomue-verifier-mcp?

+

Nuestro agente de seguridad ha analizado licklider-ai/nomue-verifier-mcp y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene licklider-ai/nomue-verifier-mcp?

+

licklider-ai/nomue-verifier-mcp es mantenido por licklider-ai. La última actividad registrada en GitHub es del 2026-09-18, con 0 issues abiertos.

¿Hay alternativas a nomue-verifier-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega nomue-verifier-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: licklider-ai/nomue-verifier-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/licklider-ai-nomue-verifier-mcp)](https://claudewave.com/repo/licklider-ai-nomue-verifier-mcp)
<a href="https://claudewave.com/repo/licklider-ai-nomue-verifier-mcp"><img src="https://claudewave.com/api/badge/licklider-ai-nomue-verifier-mcp" alt="Featured on ClaudeWave: licklider-ai/nomue-verifier-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a nomue-verifier-mcp