rekor_log_info
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_log_info for the schema, then POST the same URL with its arguments for the data.
Current state of the Sigstore Rekor public transparency log: total number of signing entries, the signed tree head, the Merkle root hash and every retired shard. AUTHORITATIVE for how many software signing events Sigstore has recorded and for the checkpoint a verifier needs. Use it before rekor_entry_by_index — the highest valid index is tree_size - 1. Keyless. Example: rekor_log_info({}).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
stable | boolean | no | Ask for the last stable (fully replicated) checkpoint rather than the newest. Default false. |
Example call
Arguments
{}
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_log_info","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('rekor_log_info', {});
More examples
{
"stable": true
}
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.