Back to Browse

Liquilens Evidence Carrier MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Offline verification of local LiquiLens evidence carriers and four-product fleet briefs.

About

Offline verification of local LiquiLens evidence carriers and four-product fleet briefs.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

8 files analyzed · No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

Documentation

View on GitHub

From the project's GitHub README.

LiquiLens Evidence Carrier

CI Release License

LiquiLens Evidence Carrier is a transport-neutral contract for moving financial evidence through files, warehouses, event buses, observability systems, data catalogs, FDC3 desktops, notebooks, citations, and AI agents without dropping provenance, rights, freshness, or authority boundaries.

The carrier is infrastructure for inspection and reproducibility. It is not an order, recommendation, credit rating, market-data entitlement, or endorsement by Bloomberg, LSEG, FactSet, FINOS, or any other platform.

This source tree is versioned for v0.16.0; a source version alone is not publication proof. The signed v0.16.0 core release was published on 2026-08-29 from reviewed commit 410f7d91114fba715e9a9ae830faa775064a4502. Its GitHub assets are checksum-pinned and attested, and the official MCP Registry version is active and latest. See docs/RELEASE-0.16.0.md for exact release receipts and the independently versioned channel boundary.

Why it travels

One verified JSON object can be embedded in:

  • FDC3 contexts and app-directory workflows;
  • CloudEvents and OpenTelemetry logs;
  • OpenLineage custom facets and data catalogs;
  • Arrow or Parquet schema metadata;
  • dbt warehouse tests, CSV, SQL, and spreadsheets;
  • CSL-JSON citations and PROV-O knowledge graphs; and
  • MCP or other agent responses.

Every full carrier preserves event_time <= knowledge_time <= as_of, source hashes, explicit redistribution rights, a content-derived identity, and an all-false execution/recommendation/credit-rating boundary. Restricted or unknown rights fail closed; incomplete or expired evidence is redacted to a separately identified reference rather than silently upgraded.

Install and verify

# Source checkout (main may contain post-release documentation)
uv sync --locked
uv run liquilens-evidence --help

# Signed v0.16.0 wheel; checksum verified against the release manifest
python -m pip install 'https://github.com/beepboop2025/liquilens-evidence-carrier/releases/download/v0.16.0/liquilens_evidence-0.16.0-py3-none-any.whl#sha256=317c06b728a2b087eca3d51ba1cdf3f7570e4078334829959008ceb0a29dfd11'
liquilens-evidence issue examples/descriptor.json > carrier.json
liquilens-evidence verify carrier.json --as-of 2026-08-24T12:00:00Z
liquilens-evidence convert carrier.json --format fdc3

The release publishes a wheel and checksum manifest. The Python runtime has no third-party dependencies. A Node.js verifier is also included for cross-language liquilens-hash-tree-v1 identity checks:

node protocol/verify_hash_tree_v1.mjs --artifact evidence-carrier carrier.json
node protocol/verify_hash_tree_v1.mjs --artifact fleet-brief fleet-brief.json

Canonical contracts

ContractCanonical URL
Full carrierhttps://liquilens.in/protocol/liquilens-evidence-carrier-v1.schema.json
Redacted referencehttps://liquilens.in/protocol/liquilens-evidence-carrier-reference-v1.schema.json
Four-product fleet briefhttps://liquilens.in/protocol/liquilens-fleet-brief-v1.schema.json
FDC3 contexthttps://liquilens.in/protocol/fdc3/com.liquilens.evidence.schema.json
OpenLineage facethttps://liquilens.in/protocol/openlineage/liquilens-evidence-facet.schema.json

The current protocol is v1. Release v0.16.0 changes release and discovery metadata, not protocol semantics or evidence authority. Its signed release workflow is run 33261143612, the wheel SHA-256 is 317c06b728a2b087eca3d51ba1cdf3f7570e4078334829959008ceb0a29dfd11, and the MCPB SHA-256 is c44b13b2efc4622a8ecfc06848f32358982dd2a9458a271e1ed77d646791961a. Production integrations can pin v0.16.0; separately released container, skill, plugin, browser, and package-manager channels retain their own verified versions. Use the canonical URLs for schema identity and discovery.

Four-product fleet briefs

liquilens.fleet-brief.v1 bundles already-issued native carriers without flattening LiquiLens, Seiche, Undertow, and Palimpsest into one score. Each brief contains exactly one rights-aware section per product and explicitly preserves full, metadata_only, unavailable, rejected, or missing state.

liquilens-evidence issue-brief \
  --liquilens ./liquilens.carrier.json \
  --seiche ./seiche.carrier.json \
  --undertow ./undertow.carrier.json \
  --palimpsest ./palimpsest.carrier.json \
  --as-of 2026-08-25T00:00:00Z > fleet-brief.json

liquilens-evidence verify-brief fleet-brief.json \
  --as-of 2026-08-25T00:00:00Z

Issuance performs no discovery or network fetch. A product mismatch, duplicate, unknown field, or tampered carrier fails closed. Rejected rights never disclose source metadata or payload. See docs/FLEET-BRIEF-V1.md for the complete contract.

Offline MCP server

The package includes a zero-third-party-dependency stdio server for agents that need to inspect local carrier JSON. It implements current stateless MCP 2026-07-28 (including server/discover) and the latest initialization-based revision, 2025-11-25, for existing clients.

{
  "mcpServers": {
    "liquilens-evidence-carrier": {
      "command": "liquilens-evidence-mcp",
      "args": ["--root", "/absolute/path/to/evidence"]
    }
  }
}

The server exposes three read-only tools:

  • verify_carrier verifies the content identity, clocks, rights, and export disposition of one explicit JSON path below the configured root.
  • project_carrier applies an existing rights-aware projection (fdc3, cloudevent, otel, openlineage, jsonld, csl, flat, or arrow).
  • verify_fleet_brief verifies one local four-product brief at its exact recorded evaluation clock without returning embedded evidence bodies.

It never fetches network data, expands restricted rights, recommends, rates credit, or executes a financial action. The published v0.16.0 GitHub release carries the checksum-pinned liquilens-evidence-carrier-mcp-0.16.0.mcpb bundle for compatible desktop clients. Registry identity: io.github.beepboop2025/liquilens-evidence-carrier.

Integration kit

Inherit verification in existing workflows

Pin the reusable action to an exact release tag:

- uses: beepboop2025/liquilens-evidence-carrier@v0.16.0
  with:
    path: evidence/close.evidence.json

For local commit gates, add this repository to .pre-commit-config.yaml. The published hook verifies files ending in .evidence.json or .carrier.json and passes every matched file through liquilens-evidence verify-files.

Use in another product

  1. Issue the carrier at the boundary where the evidence and its rights are known.
  2. Verify before every disclosure or conversion.
  3. Preserve the raw carrier plus carrier_id and record_hash at materialized boundaries.
  4. Treat missing carrier metadata as a failure, not as permission to use a naked number.
  5. Add a product-specific adapter and golden vector; do not fork the core temporal or authority semantics.

Provenance and license

Protocol artifact SHA-256 values are recorded in protocol/catalog.json. The original carrier, reference, FDC3, and OpenLineage contracts retain their established identities; the Fleet Brief v1 schema is additive. This public repository is the redistribution boundary for the carrier kit; private research code and datasets are not included.

Code, schemas, documentation, and integration assets in this repository are licensed under Apache‑2.0. Provider data carried inside an evidence object retains its own rights and license; this repository's license does not grant rights to third-party data or product trademarks.

Reviews

No reviews yet

Be the first to review this server!