ServeHTTP implements http.Handler interface
(w http.ResponseWriter, r *http.Request)
| 66 | |
| 67 | // ServeHTTP implements http.Handler interface |
| 68 | func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
| 69 | s.streamableServer.ServeHTTP(w, r) |
| 70 | } |
| 71 | |
| 72 | // Register all available MCP tools with the server excluding: |
| 73 | // - ReportTask - which requires dependencies not available in the remote MCP context |
no outgoing calls