[PR #232] [MERGED] 0.0.18 #208

Closed
opened 2026-02-15 21:15:19 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/mcpo/pull/232
Author: @tjbck
Created: 8/12/2025
Status: Merged
Merged: 10/14/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 69f6e28 fix: symlink handling in config watcher to update path on modification
  • 9969339 Merge branch 'dev' of github.com:open-webui/mcpo into fix-hot-reload-symlink
  • d202ba0 Merge branch 'main' of github.com:open-webui/mcpo into fix-hot-reload-symlink
  • b3f52e8 Merge pull request #223 from njzydark/fix-hot-reload-symlink
  • 704b8c5 Add support to run on different path prefix
  • 2d941b7 Remvoe python-version tagging since py >3.11 is supported
  • 0c6b408 Merge branch 'main' of github.com:open-webui/mcpo into dev
  • 8dd71b7 init oauth support
  • bf4f79b working oauth implementation for mcpo servers supporting dynamic client registration
  • 141d62b add oauth guide

📊 Changes

16 files changed (+1642 additions, -449 deletions)

View changed files

📝 .gitignore (+3 -1)
.python-version (+0 -1)
📝 CHANGELOG.md (+18 -4)
CLIENT_HEADER_FORWARDING.md (+151 -0)
OAUTH_GUIDE.md (+204 -0)
📝 README.md (+72 -1)
📝 pyproject.toml (+2 -2)
📝 src/mcpo/__init__.py (+11 -0)
📝 src/mcpo/main.py (+214 -45)
📝 src/mcpo/tests/test_hot_reload.py (+13 -0)
📝 src/mcpo/utils/config_watcher.py (+15 -6)
src/mcpo/utils/headers.py (+99 -0)
📝 src/mcpo/utils/main.py (+29 -5)
src/mcpo/utils/oauth.py (+294 -0)
src/mcpo/utils/oauth_callback.html (+133 -0)
📝 uv.lock (+384 -384)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/mcpo/pull/232 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 8/12/2025 **Status:** ✅ Merged **Merged:** 10/14/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`69f6e28`](https://github.com/open-webui/mcpo/commit/69f6e28c6db7f9f12ede27c149db0ca84cf43809) fix: symlink handling in config watcher to update path on modification - [`9969339`](https://github.com/open-webui/mcpo/commit/99693392a81b4adeed1b1c321a61bf29e9ad97f2) Merge branch 'dev' of github.com:open-webui/mcpo into fix-hot-reload-symlink - [`d202ba0`](https://github.com/open-webui/mcpo/commit/d202ba089bb41c70a9e37435a64ea1c91cdb0d8f) Merge branch 'main' of github.com:open-webui/mcpo into fix-hot-reload-symlink - [`b3f52e8`](https://github.com/open-webui/mcpo/commit/b3f52e8709d71bb37c2179936b43eca24cc87ddd) Merge pull request #223 from njzydark/fix-hot-reload-symlink - [`704b8c5`](https://github.com/open-webui/mcpo/commit/704b8c5c8a40cf4665fb6cc0f73730bb4e70a272) Add support to run on different path prefix - [`2d941b7`](https://github.com/open-webui/mcpo/commit/2d941b715e0de6af9c1375ce361df344696d1872) Remvoe python-version tagging since py >3.11 is supported - [`0c6b408`](https://github.com/open-webui/mcpo/commit/0c6b408a91135bdbd5f63d1b1f8fc1da1b0963f4) Merge branch 'main' of github.com:open-webui/mcpo into dev - [`8dd71b7`](https://github.com/open-webui/mcpo/commit/8dd71b73fb4b3a8f5a3496b1f3827e861fd4652e) init oauth support - [`bf4f79b`](https://github.com/open-webui/mcpo/commit/bf4f79ba4468cf7e5f3611ed114d188ac1f232a1) working oauth implementation for mcpo servers supporting dynamic client registration - [`141d62b`](https://github.com/open-webui/mcpo/commit/141d62bf8e368539a2d9a35c4bc9f40d5ce6c166) add oauth guide ### 📊 Changes **16 files changed** (+1642 additions, -449 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -1) ➖ `.python-version` (+0 -1) 📝 `CHANGELOG.md` (+18 -4) ➕ `CLIENT_HEADER_FORWARDING.md` (+151 -0) ➕ `OAUTH_GUIDE.md` (+204 -0) 📝 `README.md` (+72 -1) 📝 `pyproject.toml` (+2 -2) 📝 `src/mcpo/__init__.py` (+11 -0) 📝 `src/mcpo/main.py` (+214 -45) 📝 `src/mcpo/tests/test_hot_reload.py` (+13 -0) 📝 `src/mcpo/utils/config_watcher.py` (+15 -6) ➕ `src/mcpo/utils/headers.py` (+99 -0) 📝 `src/mcpo/utils/main.py` (+29 -5) ➕ `src/mcpo/utils/oauth.py` (+294 -0) ➕ `src/mcpo/utils/oauth_callback.html` (+133 -0) 📝 `uv.lock` (+384 -384) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 21:15:19 -05:00
yindo closed this issue 2026-02-15 21:15:19 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: open-webui/mcpo#208