|
15 | 15 | */ |
16 | 16 | package io.reshapr.proxy.mcp; |
17 | 17 |
|
18 | | -import com.fasterxml.jackson.core.type.TypeReference; |
19 | | -import com.fasterxml.jackson.databind.ObjectMapper; |
20 | | - |
21 | | -import io.reshapr.proxy.mcp.converters.*; |
| 18 | +import io.reshapr.proxy.mcp.converters.GraphQLMcpToolConverter; |
| 19 | +import io.reshapr.proxy.mcp.converters.GrpcMcpToolConverter; |
| 20 | +import io.reshapr.proxy.mcp.converters.McpToolConverter; |
| 21 | +import io.reshapr.proxy.mcp.converters.OpenAPIMcpToolConverter; |
22 | 22 | import io.reshapr.proxy.mcp.converters.ReshaprCustomToolsMcpToolConverter; |
23 | 23 | import io.reshapr.proxy.mcp.state.ElicitationStore; |
24 | 24 | import io.reshapr.proxy.context.SessionInfo; |
25 | 25 | import io.reshapr.proxy.mcp.state.SessionStore; |
26 | 26 | import io.reshapr.proxy.proxy.GrpcProxyService; |
27 | 27 | import io.reshapr.proxy.proxy.ProxyService; |
28 | | -import io.reshapr.proxy.registry.*; |
29 | 28 | import io.reshapr.proxy.context.MethodHandlingInfo; |
30 | 29 | import io.reshapr.proxy.context.MethodHandlingContext; |
| 30 | +import io.reshapr.proxy.registry.ArtifactEntryType; |
| 31 | +import io.reshapr.proxy.registry.ConfigurationEntry; |
| 32 | +import io.reshapr.proxy.registry.GatewayRegistry; |
| 33 | +import io.reshapr.proxy.registry.OperationEntry; |
| 34 | +import io.reshapr.proxy.registry.SecretEntry; |
| 35 | +import io.reshapr.proxy.registry.ServiceEntry; |
31 | 36 | import io.reshapr.proxy.security.SecureEndpoint; |
32 | 37 | import io.reshapr.proxy.util.WebUtils; |
33 | 38 |
|
| 39 | +import com.fasterxml.jackson.core.type.TypeReference; |
| 40 | +import com.fasterxml.jackson.databind.ObjectMapper; |
34 | 41 | import io.smallrye.common.annotation.RunOnVirtualThread; |
35 | 42 | import io.vertx.core.http.HttpServerRequest; |
36 | 43 | import jakarta.annotation.Nullable; |
|
0 commit comments