@cyanheads/openlibrary-mcp-server 0.1.1 → 0.1.2
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 +3 -2
- package/README.md +1 -1
- package/changelog/0.1.x/0.1.2.md +14 -0
- package/package.json +24 -2
- package/server.json +6 -6
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
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/openlibrary-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/openlibrary-mcp-server) [](https://www.typescriptlang.org/) [](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`)
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/openlibrary-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"mcpName": "io.github.cyanheads/openlibrary-mcp-server",
|
|
4
5
|
"description": "MCP server for Open Library — search 20M+ books, fetch editions, authors, subjects, and cover images.",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
|
@@ -41,6 +42,11 @@
|
|
|
41
42
|
"mcp",
|
|
42
43
|
"mcp-server",
|
|
43
44
|
"model-context-protocol",
|
|
45
|
+
"typescript",
|
|
46
|
+
"bun",
|
|
47
|
+
"stdio",
|
|
48
|
+
"streamable-http",
|
|
49
|
+
"ai-agent",
|
|
44
50
|
"open-library",
|
|
45
51
|
"books",
|
|
46
52
|
"library",
|
|
@@ -51,9 +57,25 @@
|
|
|
51
57
|
],
|
|
52
58
|
"repository": {
|
|
53
59
|
"type": "git",
|
|
54
|
-
"url": "https://github.com/cyanheads/openlibrary-mcp-server"
|
|
60
|
+
"url": "git+https://github.com/cyanheads/openlibrary-mcp-server.git"
|
|
55
61
|
},
|
|
62
|
+
"bugs": {
|
|
63
|
+
"url": "https://github.com/cyanheads/openlibrary-mcp-server/issues"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://github.com/cyanheads/openlibrary-mcp-server#readme",
|
|
66
|
+
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/openlibrary-mcp-server#readme)",
|
|
67
|
+
"funding": [
|
|
68
|
+
{
|
|
69
|
+
"type": "github",
|
|
70
|
+
"url": "https://github.com/sponsors/cyanheads"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"type": "buy_me_a_coffee",
|
|
74
|
+
"url": "https://www.buymeacoffee.com/cyanheads"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
56
77
|
"license": "Apache-2.0",
|
|
78
|
+
"packageManager": "bun@1.3.0",
|
|
57
79
|
"engines": {
|
|
58
80
|
"bun": ">=1.3.0",
|
|
59
81
|
"node": ">=24.0.0"
|
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",
|
|
3
|
+
"name": "io.github.cyanheads/openlibrary-mcp-server",
|
|
4
4
|
"description": "Read-only access to Open Library — 20M+ book editions, authors, subjects, and 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.
|
|
9
|
+
"version": "0.1.2",
|
|
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": "
|
|
16
|
-
"version": "0.1.
|
|
15
|
+
"runtimeHint": "bun",
|
|
16
|
+
"version": "0.1.2",
|
|
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": "
|
|
45
|
-
"version": "0.1.
|
|
44
|
+
"runtimeHint": "bun",
|
|
45
|
+
"version": "0.1.2",
|
|
46
46
|
"packageArguments": [
|
|
47
47
|
{
|
|
48
48
|
"type": "positional",
|