Read-only MCP server over robertdelanghe.dev'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.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก 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 robertdelanghe.dev's signed static API.
It exposes the site's identity data โ profile, writing, the GitHub corpus, the
rรฉsumรฉ credential, the OpenAPI doc โ 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 now 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.
site-mcp supplies only:
src/verbs.ts) โ list_posts, get_post,
get_conformance, get_corpus, each authored once as a @bounded-systems/verbspec
VerbSpec;src/catalog.ts) โ the
site://โฆ 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
site-mcp's MCP tools and its CLI commands โ no second definition, no drift.
Requires Node โฅ 18.17. site-mcp's 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 |
|---|---|---|
site://profile | profile.json | Headline, intro, label, links |
site://posts | posts.json | JSON Feed of writing (post list) |
site://post/{slug} | posts/{slug}.json | A single post (templated; list enumerates from the feed) |
site://corpus | corpus.json | GitHub corpus: stats + highlights |
site://conformance | conformance.json | Per-page DOM conformance report |
site://resume-vc | resume.vc.json | Rรฉsumรฉ as a Verifiable Credential |
site://openapi | openapi.json | The OpenAPI 3.2 document for the API |
The same four verbs, on both surfaces:
| Tool / command | Args | Returns |
|---|---|---|
list_posts | โ | The posts feed (slug, title, summary, tags) |
get_post | slug | A single post by slug |
get_conformance | โ | area | --full | The conformance index (3.2 KB) | one area | every criterion (19.7 KB) |
get_corpus | โ | list | --full | The corpus index (9.2 KB) | one ranked list | the whole corpus (71.7 KB) |
A client loads every tool's name, description and input schema into its context
before any call is made โ a cost paid on every session whether or not the
tool is used โ and choosing among the tools is itself a fan-out. So the tool list
is a fold: F is the list, a call is one step of the generator rule, and a
terminal response is where expansion stops.
Which makes a verb per drill-down the wrong shape: it grows the part paid
always in order to shrink the part paid sometimes. get_conformance_index +
get_conformance_area + get_corpus_index + get_corpus_list would take this
server from three tools to eight.
Instead there is one verb per subject, and the parameter is the generator
rule: no argument returns the index, an argument unfolds one branch of it, and
--full still reaches the unfolded document at its own path. Nothing was removed
from the API โ site://conformance and site://corpus still serve the complete
documents, and site://conformance/index and site://corpus/index are new
entry points alongside them.
Changed default.
get_conformancewith no arguments used to return the whole 19.7 KB report; it now returns the 3.2 KB index. Pass--full(CLI) or{"full": true}(MCP) for the previous behaviour.
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://robertdelanghe.dev/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.SITE_MCP_SIGNATURE_MODE=warn|require
verifies the Sigstore bundle against the deploy workflow identity
(โฆ/bdelanghe/site/.github/workflows/deploy.yml@refs/heads/main).Sigstore backend /
@bounded-systems/verify. The optional manifest-signature step is intended to delegate to@bounded-systems/verify, the canonical in-process bundle verifier. As ofverify@0.1.0that package ships as a self-executing CLI with no exported function (importing it runs and exits the process), so the core keeps a minimal, behaviorally-identical copy of the check and the gap is filed upstream. See static-mcp's README.
| Variable | Default | Meaning |
|---|---|---|
SITE_MCP_BASE_URL | https://robertdelanghe.dev | Origin serving the site + API + manifest |
SITE_MCP_SIGNATURE_MODE | off | off | warn | require |
SITE_MCP_SIGNER_IDENTITY | deploy workflow SAN | Expected Sigstore certificate identity |
SITE_MCP_SIGNER_ISSUER | GitHub Actions OIDC | Expected Sigstore OIDC issuer |
SITE_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/site-mcp | trusted publishing (OIDC) + provenance |
| 2 | JSR (mirror) | @bounded-systems/site-mcp | tokenless OIDC (npx jsr publish) |
| 3 | MCP Registry | io.github.bounded-systems/site-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).
[!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/site-mcp"(it reads that field off the published npm package to prove ownership).
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/site-mcp)<a href="https://allmcps.com/mcp/site-mcp"><img src="https://allmcps.com/api/badge/site-mcp?style=directory" alt="Site MCP on AllMCPs" /></a>