| 1 |
using System.ComponentModel;
|
| 2 |
using System.Data.SqlClient;
|
| 3 |
using Microsoft.Extensions.Configuration;
|
| 4 |
using ModelContextProtocol.Server;
|
| 5 |
|
| 6 |
[McpServerToolType]
|
| 7 |
public class DatabaseTools
|
| 8 |
{
|
| 9 |
private readonly IConfiguration _configuration;
|
| 10 |
private readonly ILogger<DatabaseTools> _logger; |