Skip to content

Commit 20c833b

Browse files
iguangfeiclaude
andcommitted
Release 0.1.1: make the package listable in the MCP Registry
The registry verifies that whoever publishes a listing owns the npm package by reading an "mcpName" field out of the published manifest, and it caps server.json descriptions at 100 characters. 0.1.0 met neither, so it installs fine but cannot be listed, and npm versions are immutable -- hence a patch. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 86e7a80 commit 20c833b

4 files changed

Lines changed: 24 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,21 @@ range this release was built against is recorded under each entry.
99

1010
## [Unreleased]
1111

12+
## [0.1.1] - 2026-08-22
13+
14+
### Added
15+
16+
- `mcpName` in the published manifest. The MCP Registry reads it from the npm
17+
package to verify that whoever publishes the listing owns the package, so
18+
0.1.0 could be installed but not listed.
19+
20+
### Fixed
21+
22+
- Shortened the `server.json` description to the 100 characters the registry
23+
schema allows.
24+
25+
Engine: `@deckflow/deckprobe` ^2.4.0.
26+
1227
## [0.1.0] - 2026-08-22
1328

1429
First release.
@@ -37,5 +52,6 @@ First release.
3752

3853
Engine: `@deckflow/deckprobe` ^2.4.0.
3954

40-
[Unreleased]: https://github.com/deckflow/deckprobe-mcp-server/compare/v0.1.0...HEAD
55+
[Unreleased]: https://github.com/deckflow/deckprobe-mcp-server/compare/v0.1.1...HEAD
56+
[0.1.1]: https://github.com/deckflow/deckprobe-mcp-server/compare/v0.1.0...v0.1.1
4157
[0.1.0]: https://github.com/deckflow/deckprobe-mcp-server/releases/tag/v0.1.0

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "@deckflow/deckprobe-mcp",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "MCP server for DeckProbe: inspect PDF, Microsoft Office, and Apple iWork documents without rendering them",
5+
"mcpName": "io.github.deckflow/deckprobe",
56
"type": "module",
67
"license": "MIT",
78
"author": "DeckFlow",

server.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
33
"name": "io.github.deckflow/deckprobe",
4-
"version": "0.1.0",
5-
"description": "Inspect PDF, Microsoft Office, and Apple iWork documents without rendering them: page, slide, and sheet counts, metadata, encryption and macro signals, structure, and integrity, as bounded JSON with confidence and evidence.",
4+
"version": "0.1.1",
5+
"description": "Inspect PDF, Office, and iWork documents without rendering: counts, metadata, security signals",
66
"websiteUrl": "https://github.com/deckflow/deckprobe-mcp-server",
77
"repository": {
88
"url": "https://github.com/deckflow/deckprobe-mcp-server",
@@ -13,7 +13,7 @@
1313
"registryType": "npm",
1414
"registryBaseUrl": "https://registry.npmjs.org",
1515
"identifier": "@deckflow/deckprobe-mcp",
16-
"version": "0.1.0",
16+
"version": "0.1.1",
1717
"transport": {
1818
"type": "stdio"
1919
},

0 commit comments

Comments
 (0)