rekor_entry_by_index

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_by_index for the schema, then POST the same URL with its arguments for the data.

Fetch one Sigstore Rekor transparency-log entry by its integer position in the log, with the base64 body already decoded: entry kind, signed artifact digest, signature, signing certificate, integration timestamp and inclusion proof. Use this to walk the log; use rekor_entry when you have a uuid. Keyless. Example: rekor_entry_by_index({ log_index: 500000 }).

Parameters

NameTypeRequiredDescription
log_indexnumberyesPosition in the log, 0 .. tree_size-1. rekor_log_info reports tree_size.

Example call

Arguments

{
  "log_index": 500000
}

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_by_index","arguments":{"log_index":500000}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('rekor_entry_by_index', {
  "log_index": 500000
});

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