open-edison 0.1.75rc1__py3-none-any.whl → 0.1.76rc1__py3-none-any.whl
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.
- {open_edison-0.1.75rc1.dist-info → open_edison-0.1.76rc1.dist-info}/METADATA +1 -1
- {open_edison-0.1.75rc1.dist-info → open_edison-0.1.76rc1.dist-info}/RECORD +6 -6
- src/server.py +9 -3
- {open_edison-0.1.75rc1.dist-info → open_edison-0.1.76rc1.dist-info}/WHEEL +0 -0
- {open_edison-0.1.75rc1.dist-info → open_edison-0.1.76rc1.dist-info}/entry_points.txt +0 -0
- {open_edison-0.1.75rc1.dist-info → open_edison-0.1.76rc1.dist-info}/licenses/LICENSE +0 -0
@@ -8,7 +8,7 @@ src/mcp_stdio_capture.py,sha256=SpMnUqQYm207WpiEwBahUxq4JFG9bnmNkUQVotZX7cc,5458
|
|
8
8
|
src/oauth_manager.py,sha256=qw87VxfRLfvd3YI1EhMmEJJ51N_WJsNpo17GUCvi13c,9971
|
9
9
|
src/oauth_override.py,sha256=C7QS8sPA6JqJDiNZA0FGeXcB7jU-yYu-k8V56QVpsqU,393
|
10
10
|
src/permissions.py,sha256=G_rCkVRC6yvNEoTe7g6gHXmmnwcmpS6vFScm7bI8oeY,14632
|
11
|
-
src/server.py,sha256=
|
11
|
+
src/server.py,sha256=H1OtYZcZbOZbcFYb-RljRnDGU-lYrrSNBO2g6ZylnSw,47703
|
12
12
|
src/single_user_mcp.py,sha256=ML-rBl1Nr2okzmLl2fLJYEvkphr-71n6eVtXpilmqio,24909
|
13
13
|
src/telemetry.py,sha256=-RZPIjpI53zbsKmp-63REeZ1JirWHV5WvpSRa2nqZEk,11321
|
14
14
|
src/vulture_whitelist.py,sha256=CjBOSsarbzbQt_9ATWc8MbruBsYX3hJVa_ysbRD9ZYM,135
|
@@ -34,8 +34,8 @@ src/middleware/session_tracking.py,sha256=_igPVEH_l2hQ5onLb5cdn7MOXNtSxr9USEdJkl
|
|
34
34
|
src/setup_tui/__init__.py,sha256=mDFrQoiOtQOHc0sFfGKrNXVLEDeB1S0O5aISBVzfxYo,184
|
35
35
|
src/setup_tui/main.py,sha256=9-m5p3HUnENGbfzd7Mk6LI5NjWtgMeXCWtFi65EBsVc,11257
|
36
36
|
src/tools/io.py,sha256=hhc4pv3eUzYWSZ7BbThclxSMwWBQaGMoGsItIPf_pco,1047
|
37
|
-
open_edison-0.1.
|
38
|
-
open_edison-0.1.
|
39
|
-
open_edison-0.1.
|
40
|
-
open_edison-0.1.
|
41
|
-
open_edison-0.1.
|
37
|
+
open_edison-0.1.76rc1.dist-info/METADATA,sha256=eti3m4c5kiuGoxk_xjzLp2QkruhUWcF-ElKFjn6YbrY,11996
|
38
|
+
open_edison-0.1.76rc1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
39
|
+
open_edison-0.1.76rc1.dist-info/entry_points.txt,sha256=YiGNm9x2I00hgT10HDyB4gxC1LcaV_mu8bXFjolu0Yw,171
|
40
|
+
open_edison-0.1.76rc1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
41
|
+
open_edison-0.1.76rc1.dist-info/RECORD,,
|
src/server.py
CHANGED
@@ -814,9 +814,15 @@ class OpenEdisonProxy:
|
|
814
814
|
raise AttributeError(f"Proxy does not expose list method for {kind}")
|
815
815
|
|
816
816
|
async def list_all() -> tuple[list[Any], list[Any], list[Any]]:
|
817
|
-
tools = await
|
818
|
-
|
819
|
-
|
817
|
+
tools, resources, prompts = await asyncio.gather(
|
818
|
+
_call_list("tools"),
|
819
|
+
_call_list("resources"),
|
820
|
+
_call_list("prompts"),
|
821
|
+
return_exceptions=True,
|
822
|
+
)
|
823
|
+
tools = tools if isinstance(tools, list) else []
|
824
|
+
resources = resources if isinstance(resources, list) else []
|
825
|
+
prompts = prompts if isinstance(prompts, list) else []
|
820
826
|
return tools, resources, prompts
|
821
827
|
|
822
828
|
timeout = body.timeout_s if isinstance(body.timeout_s, (int | float)) else 20.0
|
File without changes
|
File without changes
|
File without changes
|