(name string, configID uuid.UUID)
| 75 | } |
| 76 | |
| 77 | func newTestMCPAgentTool(name string, configID uuid.UUID) fantasy.AgentTool { |
| 78 | return &testMCPAgentTool{ |
| 79 | testAgentTool: &testAgentTool{info: fantasy.ToolInfo{Name: name}}, |
| 80 | configID: configID, |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | func (t *testMCPAgentTool) MCPServerConfigID() uuid.UUID { |
| 85 | return t.configID |
no outgoing calls
no test coverage detected