We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eb9652 commit 491ca16Copy full SHA for 491ca16
2 files changed
LOG.md
@@ -5,6 +5,7 @@
5
### Web GUI chat MVP
6
- **Web GUI**: Replaced landing with MCP-backed chat UI (vanilla + Tailwind)
7
- **MCP**: Added JSON-RPC search flow with dataset cards
8
+- **Fix**: Added `Accept` header for MCP 406 requirement
9
10
### Web GUI landing + Pages deploy
11
- **Web GUI**: Added static landing page in `web-gui/public`
web-gui/public/index.html
@@ -188,7 +188,10 @@ <h1 class="text-3xl font-semibold">CKAN Open Data Explorer</h1>
188
};
189
const response = await fetch(endpoint, {
190
method: "POST",
191
- headers: { "Content-Type": "application/json" },
+ headers: {
192
+ "Content-Type": "application/json",
193
+ Accept: "application/json, text/event-stream"
194
+ },
195
body: JSON.stringify(payload)
196
});
197
0 commit comments