@aborruso/ckan-mcp-server 0.4.88 → 0.4.89

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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## 2026-03-19
4
4
 
5
+ ### v0.4.89
6
+
7
+ - fix(`tools/organization.ts`): `ckan_organization_search` lowercases pattern before Solr query — fixes case-sensitive search (e.g. "Roma" → no results)
8
+
5
9
  ### v0.4.88
6
10
 
7
11
  - fix(`tools/organization.ts`): `ckan_organization_search` now shows `view_url` in markdown table and JSON output; `ckan_organization_show` JSON includes `view_url` — all using `portals.json` custom patterns
package/dist/index.js CHANGED
@@ -2232,7 +2232,7 @@ Typical workflow: ckan_organization_search \u2192 ckan_organization_show (get de
2232
2232
  },
2233
2233
  async (params) => {
2234
2234
  try {
2235
- const query = `organization:*${params.pattern}*`;
2235
+ const query = `organization:*${params.pattern.toLowerCase()}*`;
2236
2236
  const result = await makeCkanRequest(
2237
2237
  params.server_url,
2238
2238
  "package_search",
@@ -5127,7 +5127,7 @@ var registerAllPrompts = (server2) => {
5127
5127
  function createServer() {
5128
5128
  return new McpServer({
5129
5129
  name: "ckan-mcp-server",
5130
- version: "0.4.88"
5130
+ version: "0.4.89"
5131
5131
  });
5132
5132
  }
5133
5133
  function registerAll(server2) {