We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Azure/azure-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
SqlOptionDefinitions.cs•590 B
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace AzureMcp.Sql.Options;
public static class SqlOptionDefinitions
{
public const string ServerName = "server";
public const string DatabaseName = "database";
public static readonly Option<string> Server = new(
$"--{ServerName}",
"The Azure SQL Server name."
)
{
IsRequired = true
};
public static readonly Option<string> Database = new(
$"--{DatabaseName}",
"The Azure SQL Database name."
)
{
IsRequired = true
};
}