Uses of Record Class
io.modelcontextprotocol.spec.McpSchema.CallToolResult
Packages that use McpSchema.CallToolResult
-
Uses of McpSchema.CallToolResult in io.modelcontextprotocol.client
Methods in io.modelcontextprotocol.client that return McpSchema.CallToolResultModifier and TypeMethodDescriptionMcpSyncClient.callTool(McpSchema.CallToolRequest callToolRequest) Calls a tool provided by the server.Methods in io.modelcontextprotocol.client that return types with arguments of type McpSchema.CallToolResultModifier and TypeMethodDescriptionreactor.core.publisher.Mono<McpSchema.CallToolResult>McpAsyncClient.callTool(McpSchema.CallToolRequest callToolRequest) Calls a tool provided by the server. -
Uses of McpSchema.CallToolResult in io.modelcontextprotocol.server
Methods in io.modelcontextprotocol.server that return types with arguments of type McpSchema.CallToolResultModifier and TypeMethodDescriptionFunction<Map<String,Object>, reactor.core.publisher.Mono<McpSchema.CallToolResult>> McpServerFeatures.AsyncToolRegistration.call()Deprecated.Returns the value of thecallrecord component.BiFunction<McpAsyncServerExchange,Map<String, Object>, reactor.core.publisher.Mono<McpSchema.CallToolResult>> McpServerFeatures.AsyncToolSpecification.call()Returns the value of thecallrecord component.McpServerFeatures.SyncToolRegistration.call()Deprecated.Returns the value of thecallrecord component.McpServerFeatures.SyncToolSpecification.call()Returns the value of thecallrecord component.Method parameters in io.modelcontextprotocol.server with type arguments of type McpSchema.CallToolResultModifier and TypeMethodDescriptionMcpServer.AsyncSpec.tool(McpSchema.Tool tool, Function<Map<String, Object>, reactor.core.publisher.Mono<McpSchema.CallToolResult>> handler) Deprecated.Adds a single tool with its implementation handler to the server.McpServer.AsyncSpecification.tool(McpSchema.Tool tool, BiFunction<McpAsyncServerExchange, Map<String, Object>, reactor.core.publisher.Mono<McpSchema.CallToolResult>> handler) Adds a single tool with its implementation handler to the server.McpServer.SyncSpec.tool(McpSchema.Tool tool, Function<Map<String, Object>, McpSchema.CallToolResult> handler) Deprecated.Adds a single tool with its implementation handler to the server.McpServer.SyncSpecification.tool(McpSchema.Tool tool, BiFunction<McpSyncServerExchange, Map<String, Object>, McpSchema.CallToolResult> handler) Adds a single tool with its implementation handler to the server.Constructor parameters in io.modelcontextprotocol.server with type arguments of type McpSchema.CallToolResultModifierConstructorDescriptionAsyncToolRegistration(McpSchema.Tool tool, Function<Map<String, Object>, reactor.core.publisher.Mono<McpSchema.CallToolResult>> call) Deprecated.Creates an instance of aAsyncToolRegistrationrecord class.AsyncToolSpecification(McpSchema.Tool tool, BiFunction<McpAsyncServerExchange, Map<String, Object>, reactor.core.publisher.Mono<McpSchema.CallToolResult>> call) Creates an instance of aAsyncToolSpecificationrecord class.SyncToolRegistration(McpSchema.Tool tool, Function<Map<String, Object>, McpSchema.CallToolResult> call) Deprecated.Creates an instance of aSyncToolRegistrationrecord class.SyncToolSpecification(McpSchema.Tool tool, BiFunction<McpSyncServerExchange, Map<String, Object>, McpSchema.CallToolResult> call) Creates an instance of aSyncToolSpecificationrecord class.