Given server has following tools registered
builder.Services.AddMcpServer()
.WithTools<SqlTool>()
.WithTools<FileTool>()
.WithHttpTransport();
Is there a way for client to be able to differentiate (other than using naming convention) during ListToolAsync?
var tools = await mcpClient.ListToolsAsync(); // ---> how the client aware the tool belong to SqlTool or FileTool?