@aborruso/ckan-mcp-server 0.4.26 โ†’ 0.4.28

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.
Files changed (4) hide show
  1. package/LOG.md +10 -0
  2. package/README.md +11 -0
  3. package/dist/worker.js +190 -133
  4. package/package.json +1 -1
package/LOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # LOG
2
2
 
3
+ ## 2026-01-31
4
+
5
+ ### Release v0.4.27
6
+
7
+ - ckan_package_show: clarify dates (Issued/Modified vs harvest) and add metadata_harvested_at
8
+ - Resources: surface Access Service endpoints and effective download URL fallback
9
+ - Docs: add SPARQL examples + CKAN vs SPARQL comparison
10
+ - Tests: add package_show formatting/unit coverage
11
+ - Files: `src/tools/package.ts`, `tests/fixtures/responses/package-show-success.json`, `tests/unit/package-show-formatting.test.ts`, `docs/sparql-examples.md`, `src/server.ts`, `src/worker.ts`, `package.json`, `package-lock.json`
12
+
3
13
  ## 2026-01-29
4
14
 
5
15
  ### Release v0.4.26
package/README.md CHANGED
@@ -20,6 +20,17 @@ MCP (Model Context Protocol) server for interacting with CKAN-based open data po
20
20
  - ๐Ÿ›ก๏ธ Browser-like headers to avoid WAF blocks
21
21
  - ๐Ÿงช Test suite with 214 tests (100% passing)
22
22
 
23
+ ## Date fields (source vs aggregator)
24
+
25
+ CKAN portals can be *source* catalogs or *harvesting aggregators*.
26
+
27
+ - `issued` / `modified`: publisher content dates (best for "created/updated" when present)
28
+ - `metadata_created` / `metadata_modified`: CKAN record timestamps (publish time on source portals,
29
+ harvest time on aggregators)
30
+
31
+ For "recent content" queries, prefer `issued` with a fallback to `metadata_created`
32
+ when `issued` is missing (see the `content_recent` helper in `ckan_package_search`).
33
+
23
34
  ---
24
35
 
25
36
  ๐Ÿ‘‰ If you want to dive deeper, the [**AI-generated DeepWiki**](https://deepwiki.com/ondata/ckan-mcp-server) is very well done.