-
Notifications
You must be signed in to change notification settings - Fork 673
Expand file tree
/
Copy pathLoggingTools.cs
More file actions
45 lines (39 loc) · 1.49 KB
/
LoggingTools.cs
File metadata and controls
45 lines (39 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System.ComponentModel;
using ModelContextProtocol.Protocol;
using ModelContextProtocol.Server;
namespace Logging.Tools;
[McpServerToolType]
public class LoggingTools
{
[McpServerTool, Description("Demonstrates a tool that produces log messages")]
public static async Task<string> LoggingTool(
RequestContext<CallToolRequestParams> context,
int duration = 10,
int steps = 10)
{
var progressToken = context.Params.ProgressToken;
var stepDuration = duration / steps;
// <snippet_LoggingConfiguration >
ILoggerProvider loggerProvider = context.Server.AsClientLoggerProvider();
ILogger logger = loggerProvider.CreateLogger("LoggingTools");
// </snippet_LoggingConfiguration>
for (int i = 1; i <= steps; i++)
{
await Task.Delay(stepDuration * 1000);
try
{
logger.LogCritical("A critical log message");
logger.LogError("An error log message");
logger.LogWarning("A warning log message");
logger.LogInformation("An informational log message");
logger.LogDebug("A debug log message");
logger.LogTrace("A trace log message");
}
catch (Exception ex)
{
logger.LogError(ex, "An error occurred while logging messages");
}
}
return $"Long running tool completed. Duration: {duration} seconds. Steps: {steps}.";
}
}