We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba62e8b commit ab1e355Copy full SHA for ab1e355
contrib/mark3labs/mcp-go/mcpgo.go
@@ -25,7 +25,7 @@ func init() {
25
func NewToolHandlerMiddleware() server.ToolHandlerMiddleware {
26
return func(next server.ToolHandlerFunc) server.ToolHandlerFunc {
27
return func(ctx context.Context, request mcp.CallToolRequest) (*mcp.CallToolResult, error) {
28
- toolSpan, ctx := llmobs.StartToolSpan(ctx, request.Params.Name)
+ toolSpan, ctx := llmobs.StartToolSpan(ctx, request.Params.Name, llmobs.WithIntegration("mark3labs/mcp-go"))
29
30
result, err := next(ctx, request)
31
0 commit comments