@cyanheads/gdelt-mcp-server 0.1.2 → 0.1.4
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 +14 -14
- package/Dockerfile +4 -2
- package/README.md +3 -1
- package/changelog/0.1.x/0.1.3.md +11 -0
- package/changelog/0.1.x/0.1.4.md +20 -0
- package/package.json +30 -17
- package/server.json +3 -3
package/CLAUDE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** gdelt-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
4
|
+
**Version:** 0.1.4
|
|
5
5
|
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.9`
|
|
6
6
|
**Engines:** Bun ≥1.3.0, Node ≥24.0.0
|
|
7
7
|
**MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
|
|
@@ -288,23 +288,23 @@ When you complete a skill's checklist, check the boxes and add a completion time
|
|
|
288
288
|
|
|
289
289
|
## Commands
|
|
290
290
|
|
|
291
|
-
**Runtime:** Scripts use `
|
|
291
|
+
**Runtime:** Scripts use `bun run` — both `npm run <cmd>` and `bun run <cmd>` work. `bun` is preferred.
|
|
292
292
|
|
|
293
293
|
| Command | Purpose |
|
|
294
294
|
|:--------|:--------|
|
|
295
|
-
| `
|
|
296
|
-
| `
|
|
297
|
-
| `
|
|
298
|
-
| `
|
|
295
|
+
| `bun run build` | Compile TypeScript |
|
|
296
|
+
| `bun run rebuild` | Clean + build |
|
|
297
|
+
| `bun run clean` | Remove build artifacts |
|
|
298
|
+
| `bun run devcheck` | Lint + format + typecheck + security + changelog sync |
|
|
299
299
|
| `bun run audit:refresh` | Delete `bun.lock`, reinstall, re-audit. Use when `devcheck` flags a transitive advisory — stale lockfile can mask already-patched deps. If advisory survives, it's real. |
|
|
300
|
-
| `
|
|
301
|
-
| `
|
|
302
|
-
| `
|
|
303
|
-
| `
|
|
304
|
-
| `
|
|
305
|
-
| `
|
|
306
|
-
| `
|
|
307
|
-
| `
|
|
300
|
+
| `bun run tree` | Generate directory structure doc |
|
|
301
|
+
| `bun run format` | Auto-fix formatting |
|
|
302
|
+
| `bun run test` | Run tests |
|
|
303
|
+
| `bun run start:stdio` | Production mode (stdio) |
|
|
304
|
+
| `bun run start:http` | Production mode (HTTP) |
|
|
305
|
+
| `bun run changelog:build` | Regenerate `CHANGELOG.md` from `changelog/*.md` |
|
|
306
|
+
| `bun run changelog:check` | Verify `CHANGELOG.md` is in sync (used by devcheck) |
|
|
307
|
+
| `bun run bundle` | Build and pack as `.mcpb` for one-click Claude Desktop install |
|
|
308
308
|
|
|
309
309
|
---
|
|
310
310
|
|
package/Dockerfile
CHANGED
|
@@ -17,8 +17,10 @@ RUN bun install --frozen-lockfile
|
|
|
17
17
|
# Copy the rest of the source code
|
|
18
18
|
COPY . .
|
|
19
19
|
|
|
20
|
-
# Build the application
|
|
21
|
-
|
|
20
|
+
# Build the application — invoke tsc + tsc-alias directly to avoid
|
|
21
|
+
# tsx/Bun module resolution differences on Linux
|
|
22
|
+
RUN node_modules/.bin/tsc -p tsconfig.build.json && \
|
|
23
|
+
node_modules/.bin/tsc-alias -p tsconfig.build.json
|
|
22
24
|
|
|
23
25
|
|
|
24
26
|
# ==============================================================================
|
package/README.md
CHANGED
|
@@ -7,12 +7,14 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/gdelt-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/gdelt-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
14
|
<div align="center">
|
|
15
15
|
|
|
16
|
+
[](https://github.com/cyanheads/gdelt-mcp-server/releases/latest/download/gdelt-mcp-server.mcpb) [](https://cursor.com/en/install-mcp?name=gdelt-mcp-server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjeWFuaGVhZHMvZ2RlbHQtbWNwLXNlcnZlciJdfQ==) [](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22gdelt-mcp-server%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40cyanheads%2Fgdelt-mcp-server%22%5D%7D)
|
|
17
|
+
|
|
16
18
|
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
17
19
|
|
|
18
20
|
</div>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Fix Docker build — invoke tsc/tsc-alias directly instead of via bun run to avoid tsx/Bun module resolution failure on Linux"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.3 — 2026-05-25
|
|
8
|
+
|
|
9
|
+
## Fixed
|
|
10
|
+
|
|
11
|
+
- **Dockerfile** — build stage now invokes `tsc` and `tsc-alias` directly (`node_modules/.bin/tsc` + `node_modules/.bin/tsc-alias`) instead of `bun run build`; Bun's module resolver fails to find tsx's internal `./cjs/index.cjs` path on Linux, breaking the container build
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Package metadata, install badges, Docker image, bun run scripts"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.4 — 2026-05-26
|
|
8
|
+
|
|
9
|
+
## Added
|
|
10
|
+
|
|
11
|
+
- **`.github/FUNDING.yml`** — GitHub Sponsors and Buy Me a Coffee links.
|
|
12
|
+
- **README install badges** — one-click install for Claude Desktop (`.mcpb`), Cursor, and VS Code.
|
|
13
|
+
- **README badges** — Docker (`ghcr.io`) and npm badges added to the badge row.
|
|
14
|
+
- **Docker image** — multi-arch (`linux/amd64`, `linux/arm64`) image published to `ghcr.io/cyanheads/gdelt-mcp-server`.
|
|
15
|
+
- **`package.json` author, bugs, homepage, funding** — fields aligned with ecosystem standard.
|
|
16
|
+
|
|
17
|
+
## Changed
|
|
18
|
+
|
|
19
|
+
- **`package.json` scripts** — all script runners switched from `tsx` to `bun run scripts/*.ts`; `start:stdio` and `start:http` switched from `node` to `bun ./dist/index.js`; `bundle` switched from `npm run build` to `bun run build`; `test` switched to `bunx vitest run`. Removed bare `start` alias.
|
|
20
|
+
- **`tsx` dev dependency removed** — no longer needed now scripts run via `bun`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/gdelt-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Search and analyze global news coverage and US television transcripts via the GDELT Project's real-time APIs via MCP. STDIO or Streamable HTTP.",
|
|
5
5
|
"mcpName": "io.github.cyanheads/gdelt-mcp-server",
|
|
6
6
|
"type": "module",
|
|
@@ -19,23 +19,22 @@
|
|
|
19
19
|
"server.json"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "
|
|
23
|
-
"rebuild": "
|
|
24
|
-
"clean": "
|
|
25
|
-
"devcheck": "
|
|
22
|
+
"build": "bun run scripts/build.ts",
|
|
23
|
+
"rebuild": "bun run scripts/clean.ts && bun run build",
|
|
24
|
+
"clean": "bun run scripts/clean.ts",
|
|
25
|
+
"devcheck": "bun run scripts/devcheck.ts",
|
|
26
26
|
"audit:refresh": "rm -f bun.lock && bun install && bun audit",
|
|
27
|
-
"tree": "
|
|
28
|
-
"list-skills": "
|
|
27
|
+
"tree": "bun run scripts/tree.ts",
|
|
28
|
+
"list-skills": "bun run scripts/list-skills.ts",
|
|
29
29
|
"format": "biome check --write --unsafe .",
|
|
30
|
-
"lint:mcp": "
|
|
31
|
-
"lint:packaging": "
|
|
32
|
-
"bundle": "
|
|
33
|
-
"changelog:build": "
|
|
34
|
-
"changelog:check": "
|
|
35
|
-
"test": "vitest run",
|
|
36
|
-
"start": "
|
|
37
|
-
"start:
|
|
38
|
-
"start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js",
|
|
30
|
+
"lint:mcp": "bun run scripts/lint-mcp.ts",
|
|
31
|
+
"lint:packaging": "bun run scripts/lint-packaging.ts",
|
|
32
|
+
"bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/gdelt-mcp-server.mcpb",
|
|
33
|
+
"changelog:build": "bun run scripts/build-changelog.ts",
|
|
34
|
+
"changelog:check": "bun run scripts/build-changelog.ts --check",
|
|
35
|
+
"test": "bunx vitest run",
|
|
36
|
+
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
|
|
37
|
+
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
|
|
39
38
|
"publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish"
|
|
40
39
|
},
|
|
41
40
|
"keywords": [
|
|
@@ -56,6 +55,21 @@
|
|
|
56
55
|
"type": "git",
|
|
57
56
|
"url": "git+https://github.com/cyanheads/gdelt-mcp-server.git"
|
|
58
57
|
},
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://github.com/cyanheads/gdelt-mcp-server/issues"
|
|
60
|
+
},
|
|
61
|
+
"homepage": "https://github.com/cyanheads/gdelt-mcp-server#readme",
|
|
62
|
+
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/gdelt-mcp-server#readme)",
|
|
63
|
+
"funding": [
|
|
64
|
+
{
|
|
65
|
+
"type": "github",
|
|
66
|
+
"url": "https://github.com/sponsors/cyanheads"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"type": "buy_me_a_coffee",
|
|
70
|
+
"url": "https://www.buymeacoffee.com/cyanheads"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
59
73
|
"license": "Apache-2.0",
|
|
60
74
|
"engines": {
|
|
61
75
|
"bun": ">=1.3.0",
|
|
@@ -75,7 +89,6 @@
|
|
|
75
89
|
"depcheck": "^1.4.7",
|
|
76
90
|
"ignore": "^7.0.5",
|
|
77
91
|
"tsc-alias": "^1.8.17",
|
|
78
|
-
"tsx": "^4.22.3",
|
|
79
92
|
"typescript": "^6.0.3",
|
|
80
93
|
"vitest": "^4.1.7"
|
|
81
94
|
}
|
package/server.json
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/gdelt-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.4",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
14
|
"identifier": "@cyanheads/gdelt-mcp-server",
|
|
15
15
|
"runtimeHint": "node",
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.4",
|
|
17
17
|
"packageArguments": [
|
|
18
18
|
{
|
|
19
19
|
"type": "positional",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
43
43
|
"identifier": "@cyanheads/gdelt-mcp-server",
|
|
44
44
|
"runtimeHint": "node",
|
|
45
|
-
"version": "0.1.
|
|
45
|
+
"version": "0.1.4",
|
|
46
46
|
"packageArguments": [
|
|
47
47
|
{
|
|
48
48
|
"type": "positional",
|