mcpToolKey returns a unique key for an MCP tool given its server and tool name.
(serverName, toolName string)
| 404 | |
| 405 | // mcpToolKey returns a unique key for an MCP tool given its server and tool name. |
| 406 | func mcpToolKey(serverName, toolName string) string { |
| 407 | return serverName + ":" + toolName |
| 408 | } |
| 409 | |
| 410 | // computeMCPToolsDiff computes the diff between two runs' MCP tool usage. |
| 411 | // run1 is the "before" (baseline) and run2 is the "after" (comparison target). |
no outgoing calls
no test coverage detected