We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mbentham/sql-augur'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
SqlAugurOptionsExtensions.cs•459 B
namespace SqlAugur.Configuration;
public static class SqlAugurOptionsExtensions
{
public static SqlServerConnection ResolveServer(this SqlAugurOptions options, string serverName)
{
if (!options.Servers.TryGetValue(serverName, out var serverConfig))
{
throw new ArgumentException(
$"Server '{serverName}' not found. Use list_servers to see available names.");
}
return serverConfig;
}
}