| 19 | } |
| 20 | |
| 21 | type Tool struct { |
| 22 | name string |
| 23 | url string |
| 24 | method string |
| 25 | contentType string |
| 26 | params map[string]*Param |
| 27 | opts []mcp.ToolOption |
| 28 | } |
| 29 | |
| 30 | func (t *Tool) Tool() server.ServerTool { |
| 31 | return server.ServerTool{ |
nothing calls this directly
no outgoing calls
no test coverage detected