Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/release-readiness.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This document separates implemented compatibility from external publication and
## Implemented

- Shared crawler-visibility Agent Skill.
- Local `@prerenderbuddy/mcp@0.1.5` stdio server.
- Local `@prerenderbuddy/mcp@0.1.6` stdio server.
- Agent Plugins 1.0 root manifest and MCP configuration.
- Native Codex and Claude Code manifests.
- Codex and Claude marketplace descriptors.
Expand Down
2 changes: 1 addition & 1 deletion plugins/prerenderbuddy/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prerenderbuddy",
"version": "0.1.0+codex.20260806193721",
"version": "0.1.0+codex.20260809135015",
"description": "Audit crawler-visible HTML and discovery files with local Prerender Buddy MCP tools.",
"author": {
"name": "Prerender Buddy",
Expand Down
2 changes: 1 addition & 1 deletion plugins/prerenderbuddy/.mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"command": "npx",
"args": [
"--yes",
"@prerenderbuddy/mcp@0.1.5"
"@prerenderbuddy/mcp@0.1.6"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/prerenderbuddy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This package contains:
- a local Prerender Buddy MCP server configuration;
- native compatibility manifests for Codex and Claude Code.

The MCP server runs through `npx --yes @prerenderbuddy/mcp@0.1.5`. It requires Node.js 20 or newer and makes outbound requests only to public URLs selected by the user. No Prerender Buddy account, API key, analytics or telemetry is required.
The MCP server runs through `npx --yes @prerenderbuddy/mcp@0.1.6`. It requires Node.js 20 or newer and makes outbound requests only to public URLs selected by the user. No Prerender Buddy account, API key, analytics or telemetry is required.

The package conforms to the [Agent Plugins 1.0](https://agent-plugins.org/) directory format. Client support and installation methods vary; conformance does not automatically publish this package to a client marketplace.

Expand Down
2 changes: 1 addition & 1 deletion plugins/prerenderbuddy/mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"command": "npx",
"args": [
"--yes",
"@prerenderbuddy/mcp@0.1.5"
"@prerenderbuddy/mcp@0.1.6"
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/validate.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const nativeServer = nativeMcp.mcpServers?.prerenderbuddy;
const portableServer = portableMcp.mcpServers?.prerenderbuddy;
for (const server of [nativeServer, portableServer]) {
if (server?.command !== "npx") fail("MCP server must start through npx.");
if (server?.args?.join(" ") !== "--yes @prerenderbuddy/mcp@0.1.5") {
if (server?.args?.join(" ") !== "--yes @prerenderbuddy/mcp@0.1.6") {
fail("MCP package must be pinned to the reviewed version.");
}
}
Expand Down
Loading