@cyanheads/wikidata-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/Dockerfile +6 -3
- package/README.md +2 -2
- package/changelog/0.1.x/0.1.3.md +11 -0
- package/package.json +4 -3
- package/server.json +4 -4
package/Dockerfile
CHANGED
|
@@ -8,6 +8,9 @@ FROM oven/bun:1.3 AS build
|
|
|
8
8
|
|
|
9
9
|
WORKDIR /usr/src/app
|
|
10
10
|
|
|
11
|
+
# Install node for tsx-based build scripts
|
|
12
|
+
RUN apt-get update -qq && apt-get install -y --no-install-recommends nodejs npm && rm -rf /var/lib/apt/lists/*
|
|
13
|
+
|
|
11
14
|
# Copy dependency manifests for optimized layer caching
|
|
12
15
|
COPY package.json bun.lock ./
|
|
13
16
|
|
|
@@ -17,8 +20,8 @@ RUN bun install --frozen-lockfile
|
|
|
17
20
|
# Copy the rest of the source code
|
|
18
21
|
COPY . .
|
|
19
22
|
|
|
20
|
-
# Build the application
|
|
21
|
-
RUN
|
|
23
|
+
# Build the application (npm invokes node/tsx rather than bun for script runner)
|
|
24
|
+
RUN npm run build
|
|
22
25
|
|
|
23
26
|
|
|
24
27
|
# ==============================================================================
|
|
@@ -38,7 +41,7 @@ ENV NODE_ENV=production
|
|
|
38
41
|
|
|
39
42
|
# OCI image metadata (https://github.com/opencontainers/image-spec/blob/main/annotations.md)
|
|
40
43
|
LABEL org.opencontainers.image.title="@cyanheads/wikidata-mcp-server"
|
|
41
|
-
LABEL org.opencontainers.image.description="Search and fetch Wikidata entities, execute SPARQL queries, resolve external identifiers."
|
|
44
|
+
LABEL org.opencontainers.image.description="Search and fetch Wikidata entities, execute SPARQL queries, and resolve external identifiers."
|
|
42
45
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
|
43
46
|
LABEL org.opencontainers.image.source="https://github.com/cyanheads/wikidata-mcp-server"
|
|
44
47
|
|
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<h1>@cyanheads/wikidata-mcp-server</h1>
|
|
3
|
-
<p><b>Search and fetch Wikidata entities, execute SPARQL queries, resolve external identifiers via MCP. STDIO or Streamable HTTP.</b>
|
|
3
|
+
<p><b>Search and fetch Wikidata entities, execute SPARQL queries, and resolve external identifiers via MCP. STDIO or Streamable HTTP.</b>
|
|
4
4
|
<div>7 Tools • 1 Resource</div>
|
|
5
5
|
</p>
|
|
6
6
|
</div>
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/wikidata-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Sync tagline across all surfaces — adds 'and' before 'resolve external identifiers'"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.3 — 2026-05-23
|
|
8
|
+
|
|
9
|
+
## Changed
|
|
10
|
+
|
|
11
|
+
- **Tagline** — all description surfaces (`package.json`, `server.json`, `manifest.json`, `Dockerfile`, README header, GitHub repo) now read: "Search and fetch Wikidata entities, execute SPARQL queries, and resolve external identifiers via MCP. STDIO or Streamable HTTP." (condensed variant in `server.json` omits the transport suffix).
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/wikidata-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"mcpName": "io.github.cyanheads/wikidata-mcp-server",
|
|
5
|
-
"description": "Search and fetch Wikidata entities, execute SPARQL queries, resolve external identifiers via MCP. STDIO or Streamable HTTP.",
|
|
5
|
+
"description": "Search and fetch Wikidata entities, execute SPARQL queries, and resolve external identifiers via MCP. STDIO or Streamable HTTP.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -36,7 +36,8 @@
|
|
|
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",
|
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/wikidata-mcp-server",
|
|
4
|
-
"description": "Search and fetch Wikidata entities, execute SPARQL queries, resolve external identifiers.",
|
|
4
|
+
"description": "Search and fetch Wikidata entities, execute SPARQL queries, and resolve external identifiers.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/cyanheads/wikidata-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.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/wikidata-mcp-server",
|
|
15
15
|
"runtimeHint": "bun",
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.3",
|
|
17
17
|
"packageArguments": [
|
|
18
18
|
{
|
|
19
19
|
"type": "positional",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
64
64
|
"identifier": "@cyanheads/wikidata-mcp-server",
|
|
65
65
|
"runtimeHint": "bun",
|
|
66
|
-
"version": "0.1.
|
|
66
|
+
"version": "0.1.3",
|
|
67
67
|
"packageArguments": [
|
|
68
68
|
{
|
|
69
69
|
"type": "positional",
|