12 lines
350 B
C#
12 lines
350 B
C#
using ModelContextProtocol.Protocol.Transport;
|
|
using ModelContextProtocol.Server;
|
|
|
|
await using IMcpServer server = McpServerFactory.Create(new StdioServerTransport("MyServer"),
|
|
new()
|
|
{
|
|
ServerInfo = new() { Name = "MyServer", Version = "1.0.0" },
|
|
Capabilities = new() { Tools =}
|
|
});
|
|
|
|
Console.WriteLine("Hello, World!");
|