@cyanheads/openlibrary-mcp-server 0.1.1 → 0.1.3

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/Dockerfile CHANGED
@@ -37,9 +37,10 @@ WORKDIR /usr/src/app
37
37
  ENV NODE_ENV=production
38
38
 
39
39
  # OCI image metadata (https://github.com/opencontainers/image-spec/blob/main/annotations.md)
40
- LABEL org.opencontainers.image.title="openlibrary-mcp-server"
41
- LABEL org.opencontainers.image.description=""
40
+ LABEL org.opencontainers.image.title="@cyanheads/openlibrary-mcp-server"
41
+ LABEL org.opencontainers.image.description="MCP server for Open Library — search 20M+ books, fetch editions, authors, subjects, and cover images."
42
42
  LABEL org.opencontainers.image.licenses="Apache-2.0"
43
+ LABEL org.opencontainers.image.source="https://github.com/cyanheads/openlibrary-mcp-server"
43
44
 
44
45
  # Copy dependency manifests
45
46
  COPY package.json bun.lock ./
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.1-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.3-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
 
@@ -0,0 +1,14 @@
1
+ ---
2
+ summary: "Metadata polish — server.json name, runtimeHint, Dockerfile OCI labels, package.json fields, bunfig.toml"
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.1.2 — 2026-05-23
8
+
9
+ ## Changed
10
+
11
+ - **`server.json`** `name` corrected to `io.github.cyanheads/openlibrary-mcp-server`; `runtimeHint` updated `node` → `bun` on both transport entries
12
+ - **`package.json`** `mcpName`, `bugs`, `homepage`, `author`, `funding`, `packageManager` added; `repository.url` corrected to `git+https://...git`; keywords expanded with `typescript`, `bun`, `stdio`, `streamable-http`, `ai-agent`
13
+ - **`Dockerfile`** OCI labels `title`, `description`, and `source` filled in
14
+ - **`bunfig.toml`** added (`auto=fallback`, `bun=true`)
@@ -0,0 +1,11 @@
1
+ ---
2
+ summary: "Tagline sync — description updated across package.json, server.json, manifest.json, README, and GitHub repository"
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.1.3 — 2026-05-23
8
+
9
+ ## Changed
10
+
11
+ - **Description** synced to canonical tagline across all five surfaces: `package.json`, `server.json`, `manifest.json`, `README.md`, and the GitHub repository description
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@cyanheads/openlibrary-mcp-server",
3
- "version": "0.1.1",
4
- "description": "MCP server for Open Library — search 20M+ books, fetch editions, authors, subjects, and cover images.",
3
+ "version": "0.1.3",
4
+ "mcpName": "io.github.cyanheads/openlibrary-mcp-server",
5
+ "description": "Search books and authors, fetch editions, browse subjects, and resolve cover images from Open Library via MCP. STDIO or Streamable HTTP.",
5
6
  "type": "module",
6
7
  "main": "dist/index.js",
7
8
  "types": "dist/index.d.ts",
@@ -19,28 +20,34 @@
19
20
  "server.json"
20
21
  ],
21
22
  "scripts": {
22
- "build": "tsx scripts/build.ts",
23
- "rebuild": "tsx scripts/clean.ts && tsx scripts/build.ts",
24
- "clean": "tsx scripts/clean.ts",
25
- "devcheck": "tsx scripts/devcheck.ts",
23
+ "build": "bun scripts/build.ts",
24
+ "rebuild": "bun scripts/clean.ts && bun scripts/build.ts",
25
+ "clean": "bun scripts/clean.ts",
26
+ "devcheck": "bun scripts/devcheck.ts",
26
27
  "audit:refresh": "rm -f bun.lock && bun install && bun audit",
27
- "tree": "tsx scripts/tree.ts",
28
- "list-skills": "tsx scripts/list-skills.ts",
28
+ "tree": "bun scripts/tree.ts",
29
+ "list-skills": "bun scripts/list-skills.ts",
29
30
  "format": "biome check --write --unsafe .",
30
- "lint:mcp": "tsx scripts/lint-mcp.ts",
31
- "lint:packaging": "tsx scripts/lint-packaging.ts",
31
+ "lint:mcp": "bun scripts/lint-mcp.ts",
32
+ "lint:packaging": "bun scripts/lint-packaging.ts",
32
33
  "bundle": "npm run build && npx -y @anthropic-ai/mcpb pack . dist/openlibrary-mcp-server.mcpb",
33
- "changelog:build": "tsx scripts/build-changelog.ts",
34
- "changelog:check": "tsx scripts/build-changelog.ts --check",
34
+ "changelog:build": "bun scripts/build-changelog.ts",
35
+ "changelog:check": "bun scripts/build-changelog.ts --check",
35
36
  "test": "vitest run",
36
37
  "start": "node dist/index.js",
37
38
  "start:stdio": "MCP_TRANSPORT_TYPE=stdio node dist/index.js",
38
- "start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js"
39
+ "start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js",
40
+ "publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish"
39
41
  },
40
42
  "keywords": [
41
43
  "mcp",
42
44
  "mcp-server",
43
45
  "model-context-protocol",
46
+ "typescript",
47
+ "bun",
48
+ "stdio",
49
+ "streamable-http",
50
+ "ai-agent",
44
51
  "open-library",
45
52
  "books",
46
53
  "library",
@@ -51,9 +58,25 @@
51
58
  ],
52
59
  "repository": {
53
60
  "type": "git",
54
- "url": "https://github.com/cyanheads/openlibrary-mcp-server"
61
+ "url": "git+https://github.com/cyanheads/openlibrary-mcp-server.git"
55
62
  },
63
+ "bugs": {
64
+ "url": "https://github.com/cyanheads/openlibrary-mcp-server/issues"
65
+ },
66
+ "homepage": "https://github.com/cyanheads/openlibrary-mcp-server#readme",
67
+ "author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/openlibrary-mcp-server#readme)",
68
+ "funding": [
69
+ {
70
+ "type": "github",
71
+ "url": "https://github.com/sponsors/cyanheads"
72
+ },
73
+ {
74
+ "type": "buy_me_a_coffee",
75
+ "url": "https://www.buymeacoffee.com/cyanheads"
76
+ }
77
+ ],
56
78
  "license": "Apache-2.0",
79
+ "packageManager": "bun@1.3.0",
57
80
  "engines": {
58
81
  "bun": ">=1.3.0",
59
82
  "node": ">=24.0.0"
@@ -72,7 +95,6 @@
72
95
  "depcheck": "^1.4.7",
73
96
  "ignore": "^7.0.5",
74
97
  "tsc-alias": "^1.8.17",
75
- "tsx": "^4.22.3",
76
98
  "typescript": "^6.0.3",
77
99
  "vitest": "^4.1.7"
78
100
  }
package/server.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "cyanheads/openlibrary-mcp-server",
4
- "description": "Read-only access to Open Library — 20M+ book editions, authors, subjects, and cover images.",
3
+ "name": "io.github.cyanheads/openlibrary-mcp-server",
4
+ "description": "Search books and authors, fetch editions, browse subjects, and resolve cover images.",
5
5
  "repository": {
6
6
  "url": "https://github.com/cyanheads/openlibrary-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.1.1",
9
+ "version": "0.1.3",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "registryBaseUrl": "https://registry.npmjs.org",
14
14
  "identifier": "@cyanheads/openlibrary-mcp-server",
15
- "runtimeHint": "node",
16
- "version": "0.1.1",
15
+ "runtimeHint": "bun",
16
+ "version": "0.1.3",
17
17
  "packageArguments": [
18
18
  {
19
19
  "type": "positional",
@@ -41,8 +41,8 @@
41
41
  "registryType": "npm",
42
42
  "registryBaseUrl": "https://registry.npmjs.org",
43
43
  "identifier": "@cyanheads/openlibrary-mcp-server",
44
- "runtimeHint": "node",
45
- "version": "0.1.1",
44
+ "runtimeHint": "bun",
45
+ "version": "0.1.3",
46
46
  "packageArguments": [
47
47
  {
48
48
  "type": "positional",