You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SSE (server sent events) transport is now considered
to be a legacy transport and HTTP has got the baton, so we
are changing to it. Maybe some day we'll add support for
configuring the desired transport but as far as this MCP
server is just a "demonstration" or experiment for now, that's
not an impeding feature. Again, remember that the MCP server
is unprotected (while the OpenAI one supports local or remote
token validation).
BREAKING CHANGE: Any client previously using MCP SSE clients
must change the transport to HTTP. Normally this change is
trivial and everything continues working exactly the same.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,9 @@ and commits should be formatted using [Conventional Commits](https://www.convent
11
11
### Added
12
12
13
13
- Indexer: Add JSON schema support and apply for it before indexing by @stronk7 ([81b49e3](https://github.com/moodlehq/wiki-rag/commit/81b49e3ce7631f7e04da33024ca6049ea5ce7bcb))
14
+
- Vector Stores: First step towards making vector stores pluggable
15
+
- Vector Stores: Move the indexer and the searcher to use pluggable stores.
16
+
- Vector Stores: Move the OpenAI and MCP servers to use pluggable stores.
14
17
15
18
### Changed
16
19
@@ -19,6 +22,15 @@ and commits should be formatted using [Conventional Commits](https://www.convent
19
22
- Indexer: Better handling of preamble and contents on indexing by @stronk7 ([996eeec](https://github.com/moodlehq/wiki-rag/commit/996eeecfc9d3f49ee6b9264ae77cea9fa5bb0f34))
20
23
- Searcher: Improve the "popularity" optimisation by @stronk7 ([5e84ba5](https://github.com/moodlehq/wiki-rag/commit/5e84ba5039fdb02a8b5549297036cbe7c3931d03))
21
24
- Retriever: Improve the query rewrite to be more specific
25
+
- MCP: Switch the server from SSE to HTTP
26
+
-**BREAKING**: Any client previously using MCP SSE clients
27
+
must change the transport to HTTP. Normally this change is
28
+
trivial and everything continues working exactly the same.
29
+
30
+
31
+
### Fixed
32
+
33
+
- MCP: Fix the MCP resources to work with the new file format added in [v0.11.2](#0112---2025-10-22)
0 commit comments