@cyanheads/openlibrary-mcp-server 0.1.10 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CLAUDE.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Developer Protocol
2
2
 
3
3
  **Server:** openlibrary-mcp-server
4
- **Version:** 0.1.10
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.16`
4
+ **Version:** 0.1.11
5
+ **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.21`
6
6
  **Engines:** Bun ≥1.3.0, Node ≥24.0.0
7
7
  **MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
8
8
  **Zod:** ^4.4.3
@@ -264,6 +264,7 @@ Available skills:
264
264
  | `devcheck` | Lint, format, typecheck, audit |
265
265
  | `polish-docs-meta` | Finalize docs, README, metadata, and agent protocol for shipping |
266
266
  | `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
267
+ | `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
267
268
  | `git-wrapup` | Land working-tree changes as a versioned commit + annotated tag — version bump, changelog, verify, tag. Local only. |
268
269
  | `release-and-publish` | Push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
269
270
  | `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
@@ -278,6 +279,7 @@ Available skills:
278
279
  | `api-testing` | createMockContext, test patterns |
279
280
  | `api-utils` | Formatting, parsing, security, pagination, scheduling, telemetry helpers |
280
281
  | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
282
+ | `api-mirror` | MirrorService API — persistent self-refreshing SQLite mirror of a bulk upstream dataset |
281
283
  | `api-workers` | Cloudflare Workers runtime |
282
284
 
283
285
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
@@ -301,6 +303,7 @@ When you complete a skill's checklist, check the boxes and add a completion time
301
303
  | `npm test` | Run tests |
302
304
  | `npm run start:stdio` | Production mode (stdio) |
303
305
  | `npm run start:http` | Production mode (HTTP) |
306
+ | `npm run release:github` | Create GitHub Release from the current tag (title + notes-from-tag) |
304
307
  | `npm run changelog:build` | Regenerate `CHANGELOG.md` from `changelog/*.md` |
305
308
  | `npm run changelog:check` | Verify `CHANGELOG.md` is in sync (used by devcheck) |
306
309
  | `npm run bundle` | Build and pack as `.mcpb` for one-click Claude Desktop install |
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  <div align="center">
9
9
 
10
- [![Version](https://img.shields.io/badge/Version-0.1.10-blue.svg?style=flat-square)](./CHANGELOG.md) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Docker](https://img.shields.io/badge/Docker-ghcr.io-2496ED?style=flat-square&logo=docker&logoColor=white)](https://github.com/users/cyanheads/packages/container/package/openlibrary-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/openlibrary-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/openlibrary-mcp-server) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.3.0-blueviolet.svg?style=flat-square)](https://bun.sh/)
10
+ [![Version](https://img.shields.io/badge/Version-0.1.11-blue.svg?style=flat-square)](./CHANGELOG.md) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Docker](https://img.shields.io/badge/Docker-ghcr.io-2496ED?style=flat-square&logo=docker&logoColor=white)](https://github.com/users/cyanheads/packages/container/package/openlibrary-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/openlibrary-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/openlibrary-mcp-server) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.3.0-blueviolet.svg?style=flat-square)](https://bun.sh/)
11
11
 
12
12
  </div>
13
13
 
@@ -169,7 +169,7 @@ Add the following to your MCP client configuration file.
169
169
  ```json
170
170
  {
171
171
  "mcpServers": {
172
- "openlibrary": {
172
+ "openlibrary-mcp-server": {
173
173
  "type": "stdio",
174
174
  "command": "bunx",
175
175
  "args": ["@cyanheads/openlibrary-mcp-server@latest"],
@@ -187,7 +187,7 @@ Or with npx (no Bun required):
187
187
  ```json
188
188
  {
189
189
  "mcpServers": {
190
- "openlibrary": {
190
+ "openlibrary-mcp-server": {
191
191
  "type": "stdio",
192
192
  "command": "npx",
193
193
  "args": ["-y", "@cyanheads/openlibrary-mcp-server@latest"],
@@ -205,7 +205,7 @@ Or with Docker:
205
205
  ```json
206
206
  {
207
207
  "mcpServers": {
208
- "openlibrary": {
208
+ "openlibrary-mcp-server": {
209
209
  "type": "stdio",
210
210
  "command": "docker",
211
211
  "args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/openlibrary-mcp-server:latest"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/openlibrary-mcp-server",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "mcpName": "io.github.cyanheads/openlibrary-mcp-server",
5
5
  "description": "Search books and authors, fetch editions, browse subjects, and resolve cover images from Open Library via MCP. STDIO or Streamable HTTP.",
6
6
  "type": "module",
@@ -26,6 +26,7 @@
26
26
  "bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/openlibrary-mcp-server.mcpb",
27
27
  "changelog:build": "bun run scripts/build-changelog.ts",
28
28
  "changelog:check": "bun run scripts/build-changelog.ts --check",
29
+ "release:github": "tsx scripts/release-github.ts",
29
30
  "publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
30
31
  "start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
31
32
  "start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js"
@@ -76,7 +77,7 @@
76
77
  "access": "public"
77
78
  },
78
79
  "dependencies": {
79
- "@cyanheads/mcp-ts-core": "^0.9.16",
80
+ "@cyanheads/mcp-ts-core": "^0.9.21",
80
81
  "pino-pretty": "^13.1.3",
81
82
  "zod": "^4.4.3"
82
83
  },
@@ -87,6 +88,6 @@
87
88
  "ignore": "^7.0.5",
88
89
  "tsc-alias": "^1.8.17",
89
90
  "typescript": "^6.0.3",
90
- "vitest": "^4.1.7"
91
+ "vitest": "^4.1.8"
91
92
  }
92
93
  }
package/server.json CHANGED
@@ -12,14 +12,14 @@
12
12
  "url": "https://openlibrary.caseyjhand.com/mcp"
13
13
  }
14
14
  ],
15
- "version": "0.1.10",
15
+ "version": "0.1.11",
16
16
  "packages": [
17
17
  {
18
18
  "registryType": "npm",
19
19
  "registryBaseUrl": "https://registry.npmjs.org",
20
20
  "identifier": "@cyanheads/openlibrary-mcp-server",
21
21
  "runtimeHint": "bun",
22
- "version": "0.1.10",
22
+ "version": "0.1.11",
23
23
  "packageArguments": [
24
24
  {
25
25
  "type": "positional",
@@ -48,7 +48,7 @@
48
48
  "registryBaseUrl": "https://registry.npmjs.org",
49
49
  "identifier": "@cyanheads/openlibrary-mcp-server",
50
50
  "runtimeHint": "bun",
51
- "version": "0.1.10",
51
+ "version": "0.1.11",
52
52
  "packageArguments": [
53
53
  {
54
54
  "type": "positional",