rekor_entry

Pack: sigstore-rekor · Endpoint: https://gateway.pipeworx.io/sigstore-rekor/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/rekor_entry for the schema, then POST the same URL with its arguments for the data.

Fetch one Sigstore Rekor transparency-log entry by its uuid — the 80-hex id rekor_search_by_hash returns — decoded into entry kind, signed artifact digest, signature and signing certificate, integration time, and the Merkle inclusion proof that makes the entry tamper-evident. Keyless. Example: rekor_entry({ uuid: “362f8ecba72f4326166cbd2dd2eeb3c2b0f93a02c9b369a18baad8e71104ba172c64b0d12c900f4c” }).

Parameters

NameTypeRequiredDescription
uuidstringyesRekor entry uuid, 64 or 80 hex characters.

Example call

Arguments

{
  "uuid": "362f8ecba72f4326166cbd2dd2eeb3c2b0f93a02c9b369a18baad8e71104ba172c64b0d12c900f4c"
}

curl

curl -X POST https://gateway.pipeworx.io/sigstore-rekor/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"rekor_entry","arguments":{"uuid":"362f8ecba72f4326166cbd2dd2eeb3c2b0f93a02c9b369a18baad8e71104ba172c64b0d12c900f4c"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('rekor_entry', {
  "uuid": "362f8ecba72f4326166cbd2dd2eeb3c2b0f93a02c9b369a18baad8e71104ba172c64b0d12c900f4c"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "sigstore-rekor": {
      "url": "https://gateway.pipeworx.io/sigstore-rekor/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 18, 2026