22 lines
998 B
C#
22 lines
998 B
C#
namespace Sozsoft.Mcp;
|
|
|
|
/// <summary>
|
|
/// Istemciye <c>initialize</c> yanitinda bildirilen sunucu kimligi ve yonerge metni.
|
|
/// Yonerge modele hitap eder, son kullaniciya degil; bu yuzden dil anahtari uzerinden
|
|
/// gecmez — protokol metnidir, arayuz metni degil.
|
|
/// </summary>
|
|
internal static class McpServerInfoDefaults
|
|
{
|
|
public const string Name = "sozsoft-platform";
|
|
|
|
/// <summary>Connector ekraninda gorunen kaynak adi.</summary>
|
|
public const string DisplayName = "Sozsoft Platform";
|
|
|
|
public const string Version = "1.0.0";
|
|
|
|
public const string Instructions =
|
|
"Sozsoft Platform data access. Do not guess table or column names: first find the list with " +
|
|
"list_lists or search_schema, read its columns with describe_list, then query it with run_select " +
|
|
"using named @parameters. Never inline literal values into SQL. Columns marked isSensitive must " +
|
|
"not be selected. Call server_info first when a tool behaves unexpectedly.";
|
|
}
|