@cyanheads/openlibrary-mcp-server 0.1.2 → 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/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.2-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,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,8 +1,8 @@
1
1
  {
2
2
  "name": "@cyanheads/openlibrary-mcp-server",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "mcpName": "io.github.cyanheads/openlibrary-mcp-server",
5
- "description": "MCP server for Open Library — search 20M+ books, fetch editions, authors, subjects, and cover images.",
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",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
@@ -20,23 +20,24 @@
20
20
  "server.json"
21
21
  ],
22
22
  "scripts": {
23
- "build": "tsx scripts/build.ts",
24
- "rebuild": "tsx scripts/clean.ts && tsx scripts/build.ts",
25
- "clean": "tsx scripts/clean.ts",
26
- "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",
27
27
  "audit:refresh": "rm -f bun.lock && bun install && bun audit",
28
- "tree": "tsx scripts/tree.ts",
29
- "list-skills": "tsx scripts/list-skills.ts",
28
+ "tree": "bun scripts/tree.ts",
29
+ "list-skills": "bun scripts/list-skills.ts",
30
30
  "format": "biome check --write --unsafe .",
31
- "lint:mcp": "tsx scripts/lint-mcp.ts",
32
- "lint:packaging": "tsx scripts/lint-packaging.ts",
31
+ "lint:mcp": "bun scripts/lint-mcp.ts",
32
+ "lint:packaging": "bun scripts/lint-packaging.ts",
33
33
  "bundle": "npm run build && npx -y @anthropic-ai/mcpb pack . dist/openlibrary-mcp-server.mcpb",
34
- "changelog:build": "tsx scripts/build-changelog.ts",
35
- "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",
36
36
  "test": "vitest run",
37
37
  "start": "node dist/index.js",
38
38
  "start:stdio": "MCP_TRANSPORT_TYPE=stdio node dist/index.js",
39
- "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"
40
41
  },
41
42
  "keywords": [
42
43
  "mcp",
@@ -94,7 +95,6 @@
94
95
  "depcheck": "^1.4.7",
95
96
  "ignore": "^7.0.5",
96
97
  "tsc-alias": "^1.8.17",
97
- "tsx": "^4.22.3",
98
98
  "typescript": "^6.0.3",
99
99
  "vitest": "^4.1.7"
100
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
3
  "name": "io.github.cyanheads/openlibrary-mcp-server",
4
- "description": "Read-only access to Open Library — 20M+ book editions, authors, subjects, and cover images.",
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.2",
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
15
  "runtimeHint": "bun",
16
- "version": "0.1.2",
16
+ "version": "0.1.3",
17
17
  "packageArguments": [
18
18
  {
19
19
  "type": "positional",
@@ -42,7 +42,7 @@
42
42
  "registryBaseUrl": "https://registry.npmjs.org",
43
43
  "identifier": "@cyanheads/openlibrary-mcp-server",
44
44
  "runtimeHint": "bun",
45
- "version": "0.1.2",
45
+ "version": "0.1.3",
46
46
  "packageArguments": [
47
47
  {
48
48
  "type": "positional",