()
| 280 | |
| 281 | |
| 282 | def make_context_server_app() -> Starlette: |
| 283 | return make_app( |
| 284 | Server( |
| 285 | "request_context_server", |
| 286 | on_call_tool=_handle_context_call_tool, |
| 287 | on_list_tools=_handle_context_list_tools, |
| 288 | ) |
| 289 | ) |
| 290 | |
| 291 | |
| 292 | @pytest.mark.anyio |
no test coverage detected