@aborruso/ckan-mcp-server 0.4.92 → 0.4.94
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 +12 -1
- package/dist/worker.js +20 -20
- package/package.json +1 -1
package/LOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# LOG
|
|
2
2
|
|
|
3
|
+
## 2026-03-26
|
|
4
|
+
|
|
5
|
+
### v0.4.94
|
|
6
|
+
|
|
7
|
+
- Add `data.gov.ua` (Ukraine open data portal) to `portals.json` with explicit `force_text_field: false` to prevent auto-detection from incorrectly wrapping Solr queries in `text:(...)`, which caused 0 results
|
|
8
|
+
|
|
9
|
+
## 2026-03-24
|
|
10
|
+
|
|
11
|
+
### v0.4.93
|
|
12
|
+
|
|
13
|
+
- fix(worker): return 405 immediately for GET /mcp — prevents bot scanners from hanging the Worker and consuming CPU quota
|
|
14
|
+
|
|
3
15
|
## 2026-03-23
|
|
4
16
|
|
|
5
17
|
### v0.4.92
|
package/dist/index.js
CHANGED
|
@@ -141,6 +141,17 @@ var portals_default = {
|
|
|
141
141
|
],
|
|
142
142
|
organization_view_url: "https://ckan-prod.zurich.datopian.com/organization/{name}"
|
|
143
143
|
},
|
|
144
|
+
{
|
|
145
|
+
id: "data-gov-ua",
|
|
146
|
+
name: "data.gov.ua",
|
|
147
|
+
api_url: "https://data.gov.ua",
|
|
148
|
+
api_url_aliases: [
|
|
149
|
+
"http://data.gov.ua"
|
|
150
|
+
],
|
|
151
|
+
search: {
|
|
152
|
+
force_text_field: false
|
|
153
|
+
}
|
|
154
|
+
},
|
|
144
155
|
{
|
|
145
156
|
id: "govdata-de",
|
|
146
157
|
name: "govdata.de",
|
|
@@ -5129,7 +5140,7 @@ var registerAllPrompts = (server) => {
|
|
|
5129
5140
|
function createServer() {
|
|
5130
5141
|
return new McpServer({
|
|
5131
5142
|
name: "ckan-mcp-server",
|
|
5132
|
-
version: "0.4.
|
|
5143
|
+
version: "0.4.94"
|
|
5133
5144
|
});
|
|
5134
5145
|
}
|
|
5135
5146
|
function registerAll(server) {
|