@cyanheads/wikidata-mcp-server 0.1.9 → 0.1.10

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:** @cyanheads/wikidata-mcp-server
4
- **Version:** 0.1.9
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.16`
4
+ **Version:** 0.1.10
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
@@ -272,6 +272,7 @@ Available skills:
272
272
  | `git-wrapup` | Land working-tree changes as a versioned commit + annotated tag — version bump, changelog, verify, tag. Local only. |
273
273
  | `release-and-publish` | Push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
274
274
  | `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
275
+ | `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
275
276
  | `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
276
277
  | `report-issue-local` | File a bug or feature request against this server's own repo via `gh` CLI |
277
278
  | `api-auth` | Auth modes, scopes, JWT/OAuth |
@@ -286,6 +287,8 @@ Available skills:
286
287
  | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
287
288
  | `api-workers` | Cloudflare Workers runtime |
288
289
 
290
+ **Chaining skills into pipelines.** When the user wants a multi-phase effort — build this server out, QA-and-fix the surface, update-and-ship — *and you can spawn sub-agents*, `skills/orchestrations/SKILL.md` sequences the task skills above into a gated pipeline with verification at each step. Read it to drive the run. Optional: skip it if you can't orchestrate sub-agents, and ignore it entirely if you were *spawned* as one — you've already been scoped to a single phase.
291
+
289
292
  When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
290
293
 
291
294
  ---
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.9-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/wikidata-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/wikidata-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/wikidata-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.2-blueviolet.svg?style=flat-square)](https://bun.sh/)
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/wikidata-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/wikidata-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/wikidata-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.2-blueviolet.svg?style=flat-square)](https://bun.sh/)
11
11
 
12
12
  </div>
13
13
 
@@ -165,7 +165,7 @@ Add the following to your MCP client configuration file.
165
165
  ```json
166
166
  {
167
167
  "mcpServers": {
168
- "wikidata": {
168
+ "wikidata-mcp-server": {
169
169
  "type": "stdio",
170
170
  "command": "bunx",
171
171
  "args": ["@cyanheads/wikidata-mcp-server@latest"],
@@ -183,7 +183,7 @@ Or with npx (no Bun required):
183
183
  ```json
184
184
  {
185
185
  "mcpServers": {
186
- "wikidata": {
186
+ "wikidata-mcp-server": {
187
187
  "type": "stdio",
188
188
  "command": "npx",
189
189
  "args": ["-y", "@cyanheads/wikidata-mcp-server@latest"],
@@ -201,7 +201,7 @@ Or with Docker:
201
201
  ```json
202
202
  {
203
203
  "mcpServers": {
204
- "wikidata": {
204
+ "wikidata-mcp-server": {
205
205
  "type": "stdio",
206
206
  "command": "docker",
207
207
  "args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/wikidata-mcp-server:latest"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/wikidata-mcp-server",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "mcpName": "io.github.cyanheads/wikidata-mcp-server",
5
5
  "description": "Search and fetch Wikidata entities, execute SPARQL queries, and resolve external identifiers via MCP. STDIO or Streamable HTTP.",
6
6
  "type": "module",
@@ -25,6 +25,7 @@
25
25
  "bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/wikidata-mcp-server.mcpb",
26
26
  "changelog:build": "bun run scripts/build-changelog.ts",
27
27
  "changelog:check": "bun run scripts/build-changelog.ts --check",
28
+ "release:github": "bun run scripts/release-github.ts",
28
29
  "test": "bunx vitest run",
29
30
  "start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
30
31
  "start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
@@ -74,7 +75,7 @@
74
75
  "access": "public"
75
76
  },
76
77
  "dependencies": {
77
- "@cyanheads/mcp-ts-core": "^0.9.16",
78
+ "@cyanheads/mcp-ts-core": "^0.9.21",
78
79
  "pino-pretty": "^13.1.3",
79
80
  "zod": "^4.4.3"
80
81
  },
@@ -84,8 +85,8 @@
84
85
  "depcheck": "^1.4.7",
85
86
  "ignore": "^7.0.5",
86
87
  "tsc-alias": "^1.8.17",
87
- "tsx": "^4.22.3",
88
+ "tsx": "^4.22.4",
88
89
  "typescript": "^6.0.3",
89
- "vitest": "^4.1.7"
90
+ "vitest": "^4.1.8"
90
91
  }
91
92
  }
package/server.json CHANGED
@@ -12,14 +12,14 @@
12
12
  "url": "https://wikidata.caseyjhand.com/mcp"
13
13
  }
14
14
  ],
15
- "version": "0.1.9",
15
+ "version": "0.1.10",
16
16
  "packages": [
17
17
  {
18
18
  "registryType": "npm",
19
19
  "registryBaseUrl": "https://registry.npmjs.org",
20
20
  "identifier": "@cyanheads/wikidata-mcp-server",
21
21
  "runtimeHint": "bun",
22
- "version": "0.1.9",
22
+ "version": "0.1.10",
23
23
  "packageArguments": [
24
24
  {
25
25
  "type": "positional",
@@ -69,7 +69,7 @@
69
69
  "registryBaseUrl": "https://registry.npmjs.org",
70
70
  "identifier": "@cyanheads/wikidata-mcp-server",
71
71
  "runtimeHint": "bun",
72
- "version": "0.1.9",
72
+ "version": "0.1.10",
73
73
  "packageArguments": [
74
74
  {
75
75
  "type": "positional",