@aborruso/ckan-mcp-server 0.4.66 → 0.4.68
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/LOG.md +12 -0
- package/dist/index.js +104 -421
- package/dist/worker.js +126 -145
- package/package.json +1 -1
package/LOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# LOG
|
|
2
2
|
|
|
3
|
+
## 2026-03-04 (v0.4.68)
|
|
4
|
+
|
|
5
|
+
- feat: SPARQL endpoint config in `portals.json` — `sparql.endpoint_url` + `sparql.method` per portal (Italy: `lod.dati.gov.it/sparql`, GET-only)
|
|
6
|
+
- feat: `ckan_status_show` now shows SPARQL endpoint when configured for the portal
|
|
7
|
+
- fix: `sparql_query` — GET fallback on 403/405 for endpoints that reject POST; User-Agent set to `Mozilla/5.0 (compatible; CKAN-MCP-Server/1.0)` (required by AWS WAF on lod.dati.gov.it)
|
|
8
|
+
- refactor: `portal-config.ts` — added `SparqlConfig` type, `getSparqlConfig(endpointUrl)`, `getPortalSparqlConfig(serverUrl)`; tool count 18→19
|
|
9
|
+
|
|
10
|
+
## 2026-03-04 (v0.4.67)
|
|
11
|
+
|
|
12
|
+
- improve: `sparql_query` — validate SELECT-only, auto-inject LIMIT (default 25, max 1000), truncate output at CHARACTER_LIMIT; +11 tests (310 total)
|
|
13
|
+
- remove: `europa_dataset_search` tool and related files (`src/tools/europa.ts`, `src/utils/europa-http.ts`, Europa types in `src/types.ts`, docs, tests); tool count 19→18
|
|
14
|
+
|
|
3
15
|
## 2026-03-04 (v0.4.66)
|
|
4
16
|
|
|
5
17
|
- feat: add `sparql_query` tool — execute SPARQL SELECT against any public HTTPS endpoint (e.g. data.europa.eu/sparql, DBpedia, Wikidata)
|