@aborruso/ckan-mcp-server 0.4.39 → 0.4.41

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
@@ -1,5 +1,43 @@
1
1
  # LOG
2
2
 
3
+ ## 2026-02-20 (v0.4.41)
4
+
5
+ - Fix MCP Apps implementation (was broken in v0.4.40):
6
+ - `_meta.ui.resourceUri` moved to tool DEFINITION (not result) using `registerAppTool` from `@modelcontextprotocol/ext-apps/server`
7
+ - URI scheme changed from `ckan-ui://` to `ui://ckan/` (required by spec)
8
+ - Resource now uses `RESOURCE_MIME_TYPE` from ext-apps (required by clients)
9
+ - Resource registered via `registerAppResource` instead of `server.registerResource`
10
+ - Data passed to UI via `structuredContent` in tool result; HTML listener updated to handle `ui/toolResult` JSON-RPC format
11
+ - Table viewer extended to `ckan_package_search`: datasets flattened to title/organization/formats/num_resources/modified/license columns
12
+ - Added `@modelcontextprotocol/ext-apps` as runtime dependency
13
+
14
+ ## 2026-02-20
15
+
16
+ - **⚠️ MCP Apps not yet supported by Claude.ai/Claude Desktop clients**: `_meta.ui.resourceUri` is silently ignored — the interactive table viewer never appears. The server-side implementation is correct and ready; waiting for client support. Feature is effectively dormant until Anthropic ships MCP Apps in public clients.
17
+ - Add DataStore Table Viewer (MCP Apps interactive UI)
18
+ - New MCP resource `ckan-ui://datastore-table` serves self-contained HTML table viewer
19
+ - `ckan_datastore_search` now returns `_meta.ui.resourceUri` + `_meta.ui.data` for MCP Apps clients
20
+ - Interactive features: sortable columns (numeric/date/string type-aware), text filter, pagination (10/25/50/100 rows/page)
21
+ - Works in Node.js and Cloudflare Workers (HTML inlined in TypeScript module, no fs dependency)
22
+ - Non-breaking: text/markdown output unchanged; non-MCP-Apps clients ignore `_meta`
23
+ - Files: `src/ui/datastore-table.html`, `src/resources/datastore-table-ui.ts`, updated `src/tools/datastore.ts` and `src/resources/index.ts`
24
+ - Tests: 228 passing (7 new)
25
+ - Ideas: `docs/future-ideas.md` updated with MCP Apps section
26
+ - OpenSpec: `add-datastore-table-viewer` created and implemented
27
+
28
+ ## 2026-02-09
29
+
30
+ ### Feature Request - One-click Installation
31
+
32
+ - Created issue #11 for one-click MCP server installation support
33
+ - Proposes `claude://install-mcp-server` protocol integration
34
+ - Based on Anthropic Desktop Extensions announcement
35
+ - **Updated proposal**: Two one-click installers to serve different use cases
36
+ - 🚀 **"Try it now"** → HTTP Worker (instant, zero install, shared quota)
37
+ - 💪 **"Install locally"** → npx (unlimited, requires Node.js)
38
+ - User journey: try demo first, install locally when ready for production
39
+ - Files: GitHub issue #11 + comment
40
+
3
41
  ## 2026-02-02
4
42
 
5
43
  ### Release v0.4.39 - Local Install Promotion
@@ -17,7 +55,7 @@
17
55
 
18
56
  **Footer shown to Workers users**:
19
57
  ```
20
- ℹ️ Demo instance (100k requests/month shared globally). For unlimited access: https://github.com/ondata/ckan-mcp-server#installation
58
+ ℹ️ Demo instance (100k requests/day shared quota). For unlimited access: https://github.com/ondata/ckan-mcp-server#installation
21
59
  ```
22
60
 
23
61
  **Files modified**:
@@ -478,10 +516,6 @@
478
516
  - **Fix**: Normalize natural-language queries before search
479
517
  - **Gemini**: Added API key input and NL→Solr query call
480
518
 
481
- ### Web GUI landing + Pages deploy
482
- - **Web GUI**: Added static landing page in `web-gui/public`
483
- - **CI**: Added GitHub Pages workflow for auto deploy on HTML changes
484
-
485
519
  ## 2026-01-10
486
520
 
487
521
  ### Version 0.4.7 - Portal search parser override
package/README.md CHANGED
@@ -24,19 +24,12 @@ MCP (Model Context Protocol) server for interacting with CKAN-based open data po
24
24
 
25
25
  ---
26
26
 
27
- > ## 🚀 **Recommended: Install Locally**
28
- >
27
+ > **💡 Local installation available** for unlimited access and better performance:
29
28
  > ```bash
30
29
  > npm install -g @aborruso/ckan-mcp-server
31
30
  > ```
32
31
  >
33
- > **Benefits:**
34
- > - ✅ **No request limits** - unlimited queries
35
- > - ✅ **Faster** - no network latency
36
- > - ✅ **Always available** - no shared quota
37
- > - ✅ **Free** - open source, no costs
38
- >
39
- > The Cloudflare Workers endpoint is only for quick testing (100k requests/month shared globally across all users).
32
+ > The Cloudflare Workers endpoint has 100k requests/day shared quota - sufficient for most users, but local installation is recommended for heavy usage.
40
33
 
41
34
  ---
42
35