@pipeworx/sigstore-rekor
MCP serverMonitoring & opsSigstore Rekor, the public transparency log for software signatures.
Available today. Use it from your connected AI after setup.
No other account needed.
Add ahel to your AI once: Claude, ChatGPT, Cursor, Claude Code or Codex. Then ask it to use this.
Then ask your AI: use @pipeworx/sigstore-rekor
Install @pipeworx/sigstore-rekor
The server’s own address, for the clients that take one directly. Or connect ahel onceand every client you use reads it from one address, with the account kept on ahel rather than in each client’s config.
Claude Code
claude mcp add --transport http --scope user pipeworx-sigstore-rekor 'https://gateway.pipeworx.io/sigstore-rekor/mcp'Run it once in your project, then open /mcp to approve any sign-in the server asks for.
Claude Desktop
https://gateway.pipeworx.io/sigstore-rekor/mcpAdd a custom connector in Settings, paste this address, and approve the sign-in.
Cursor
cursor://anysphere.cursor-deeplink/mcp/install?name=pipeworx-sigstore-rekor&config=eyJ1cmwiOiJodHRwczovL2dhdGV3YXkucGlwZXdvcnguaW8vc2lnc3RvcmUtcmVrb3IvbWNwIn0=Open the link and Cursor adds the server at that address.
ChatGPT
https://gateway.pipeworx.io/sigstore-rekor/mcpIn Settings, enable Developer mode, create an MCP app, and paste this address. Your plan and workspace must allow custom apps.
Codex
codex mcp add pipeworx-sigstore-rekor --url 'https://gateway.pipeworx.io/sigstore-rekor/mcp'Run it once, then sign in with codex mcp login pipeworx-sigstore-rekor if the server asks for an account.
From the project's README
As published by pipeworx-io/mcp-sigstore-rekor in README.md.
The Sigstore Rekor public transparency log — the immutable, append-only record of software signing events behind cosign, npm and PyPI provenance, and SLSA attestations.
Part of Pipeworx — an MCP gateway connecting AI agents to 1679+ live data sources.
Tools
rekor_log_info(...)— current log state: total entries, signed tree head, Merkle root, retired shards. Call it for the upper bound onlog_index.rekor_entry_by_index(log_index)— one entry by its integer position, body decoded.rekor_search_by_hash(hash | email)— given a sha256 artifact digest (or a signing-certificate email identity), every entry that signed it. Returns uuids.rekor_entry(uuid)— one entry by uuid, with signing certificate, integration time and inclusion proof.
Auth
Keyless.
Data sources
- https://rekor.sigstore.dev/api/v1/log — signed tree head and shard list.
- https://rekor.sigstore.dev/api/v1/log/entries?logIndex=N — entry by position.
- https://rekor.sigstore.dev/api/v1/index/retrieve — POST
{hash}or{email}, returns uuids. - https://rekor.sigstore.dev/api/v1/log/entries/{uuid} — entry by uuid.
Notes the next person would otherwise rediscover:
bodyis base64-encoded JSON. Every tool here decodes it intoentry_bodyand lifts the artifact digest and entry kind to the top level; a caller that reads the raw field gets an opaque blob.logIndexanduuidare different identifier spaces.rekor_search_by_hashreturns uuids, so it feedsrekor_entry, notrekor_entry_by_index.- Entry KINDS (
rekord,hashedrekord,intoto,dsse) do not share a body shape.summarize()looks each field up where that kind puts it and returns null where the kind has no equivalent — do not assumeartifact_digestis always populated. - The index search hashes want the
sha256:<hex>form. A bare hex digest is what every other tool prints, so both are accepted and normalised in-pack. - No entry for a digest is NOT evidence the artifact is bad — only that there
is no public signing record. The tool says so in its
note.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"sigstore-rekor": {
"url": "https://gateway.pipeworx.io/sigstore-rekor/mcp"
}
}
}
What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/sigstore-rekor/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1679+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
No MCP client? Call it over HTTP
curl -X POST https://gateway.pipeworx.io/v1/tools/rekor_log_info \
-H 'Content-Type: application/json' \
-d '{}'
No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/rekor_log_info. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"sigstore-rekor": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-sigstore-rekor"]
}
}
}
Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-sigstore-rekor
It speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Sigstore Rekor data" })
The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
Advanced
- Delivery
- sigstore-rekor MCP server → your ahel connector (mcp.ahel.ai) → your AI.
- Catalog kind
- mcp-server
- Key
io-github-pipeworx-io-sigstore-rekor- Source
- github.com/pipeworx-io/mcp-sigstore-rekor
- Hosted endpoint
https://gateway.pipeworx.io/sigstore-rekor/mcp