Read-only MCP server over bounded.tools's Sigstore-verified static API (stdio).
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A local, read-only MCP server (and a matching CLI) over bounded.tools' signed static API.
It exposes the parts of the site that are served as verifiable, content-addressed
JSON โ the Web-Build Conformance report and the SPDX SBOM โ to any MCP client
(Claude Desktop, Claude Code, etc.), and verifies every response byte-for-byte
against the site's Sigstore-signed sha256 manifest before handing it back. If
the bytes a client would receive don't match the signed manifest, it refuses to
return them.
It runs locally over stdio โ the client spawns it as a subprocess. There is no hosted server and no network listener, which preserves the site's static / no-attack-surface posture.
This package is thin. All of the reusable machinery โ the verifying fetch
client, the sha256 manifest + Sigstore checks, and the
VerbSpec โ MCP (tools + resources) / VerbSpec โ CLI projection โ lives in
@bounded-systems/static-mcp.
bounded-tools-mcp supplies only:
src/verbs.ts) โ get_conformance,
get_sbom, each authored once as a
@bounded-systems/verbspec VerbSpec;src/catalog.ts) โ the
tools://โฆ resources;src/config.ts) โ the origin and
expected signer identity; andsrc/index.ts) โ which picks a surface and
hands the spec to the core.Two surfaces, one definition. verbspec projects each verb to both an MCP tool and a CLI subcommand. The exact same verb set backs the MCP tools and the CLI commands โ no second definition, no drift.
bounded.tools is a static site whose verifiable surface is intentionally small. Only artifacts the site serves as signed, content-addressed JSON are exposed here โ each is fetched and verified byte-for-byte against the signed manifest:
| Served as | Artifact | Exposed |
|---|---|---|
| signed JSON | api/v1/conformance.json | โ
get_conformance ยท tools://conformance |
| signed JSON | sbom.spdx.json | โ
get_sbom ยท tools://sbom |
| signed JSON | site.webmanifest | โ
tools://webmanifest (resource only) |
| signed HTML + Markdown | the blog (blog/*.html, blog/*.md) | โ not JSON โ see below |
Honesty over surface area. The blog is covered by the signed manifest, but it is served as HTML + Markdown, not as a JSON feed or per-post JSON documents. The verified-static core fetches-and-JSON-parses each artifact, so exposing the blog as a "tool" would mean fabricating a JSON shape the site does not actually serve. It is therefore left out rather than faked. If bounded.tools later publishes a signed
posts.json(and per-post JSON),list_posts/get_postverbs drop straight in, exactly as insite-mcp.
Requires Node โฅ 18.17. The verbspec dependency is published to JSR, so installs
resolve it through JSR's npm bridge โ the included .npmrc sets
@jsr:registry=https://npm.jsr.io. (Consuming from a fresh environment, add that
one line to your npm config.)
The MCP server logs a readiness line to stderr (stdout is the MCP channel):
| Resource URI | Endpoint | Contents |
|---|---|---|
tools://conformance | api/v1/conformance.json | Web-Build Conformance Standard report (HTML / WCAG 2.2 / ARIA) |
tools://sbom | sbom.spdx.json | SPDX software bill of materials |
tools://webmanifest | site.webmanifest | W3C web app manifest (PWA site metadata) |
The same two verbs, on both surfaces:
| Tool / command | Args | Returns |
|---|---|---|
get_conformance | โ | The Web-Build Conformance report |
get_sbom | โ | The SPDX software bill of materials |
Resource reads and tool results carry a _meta.verification block (the
manifest-relative path, source URL, the verified sha256, and the manifest
signature status). The CLI prints the verified JSON; a verification failure exits
non-zero with nothing on stdout.
The site publishes a single signed manifest, https://bounded.tools/site.sha256
(sha256sum format), and a Sigstore bundle over it, site.sha256.sigstore.json.
The core enforces:
VerificationError instead of a response. A path absent from the
manifest is likewise refused.BOUNDED_TOOLS_MCP_SIGNATURE_MODE=warn|require
verifies the Sigstore bundle against the deploy workflow identity
(โฆ/bounded-systems/site/.github/workflows/deploy.yml@refs/heads/main, OIDC
issuer https://token.actions.githubusercontent.com). This is the same
keyless identity published in
https://bounded.tools/provenance.json.| Variable | Default | Meaning |
|---|---|---|
BOUNDED_TOOLS_MCP_BASE_URL | https://bounded.tools | Origin serving the site + API + manifest |
BOUNDED_TOOLS_MCP_SIGNATURE_MODE | off | off | warn | require |
BOUNDED_TOOLS_MCP_SIGNER_IDENTITY | deploy workflow SAN | Expected Sigstore certificate identity |
BOUNDED_TOOLS_MCP_SIGNER_ISSUER | GitHub Actions OIDC | Expected Sigstore OIDC issuer |
BOUNDED_TOOLS_MCP_FETCH_TIMEOUT_MS | 15000 | Per-request fetch timeout |
One tag publishes the same version to three registries, mirrored. Pushing a
v* tag runs publish.yml, which fans out to:
| # | Registry | Identifier | Auth |
|---|---|---|---|
| 1 | npm | @bounded-systems/bounded-tools-mcp | trusted publishing (OIDC) + provenance |
| 2 | JSR (mirror) | @bounded-systems/bounded-tools-mcp | tokenless OIDC (npx jsr publish) |
| 3 | MCP Registry | io.github.bounded-systems/bounded-tools-mcp | GitHub-OIDC namespace auth (mcp-publisher) |
There are no long-lived secrets โ every registry authenticates with the
job's short-lived GitHub Actions OIDC token (id-token: write). npm needs
npm โฅ 11.5 (the workflow upgrades npm to guarantee this). The mcp-registry job
is decoupled from the npm job (needs: verify, NOT needs: npm): the
registry proves package ownership by reading the mcpName field off the
already-published npm package, so it can run/retry independently.
[!IMPORTANT] Versions must stay in sync. The release version lives in four places that must all match:
package.json,deno.json,server.json, and thev<version>git tag. The workflow'sverifyjob hard-fails the whole release on any mismatch, so npm and JSR can never drift apart. The MCP Registry also requirespackage.jsonto carry"mcpName": "io.github.bounded-systems/bounded-tools-mcp"(it reads that field off the published npm package to prove ownership).
(a) npm โ Trusted Publisher (on npmjs.com)
@bounded-systems scope.@bounded-systems/bounded-tools-mcp โ
Settings โ Trusted Publisher. For a brand-new package you may need to
publish 0.1.0 once manually (or create the package), then switch to trusted
publishing.bounded-systemsbounded-tools-mcppublish.yml(b) JSR โ create + link the package (on jsr.io)
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/bounded-tools-mcp)<a href="https://allmcps.com/mcp/bounded-tools-mcp"><img src="https://allmcps.com/api/badge/bounded-tools-mcp?style=directory" alt="Bounded Tools MCP on AllMCPs" /></a>