28 lines
510 B
Go
28 lines
510 B
Go
package scanner
|
|
|
|
import "s1d3sw1ped/robinhood-agentic-mcp/client"
|
|
|
|
// Client wraps Robinhood scanner MCP tools.
|
|
type Client struct {
|
|
c client.Caller
|
|
}
|
|
|
|
// New returns a scanner client that invokes tools through c.
|
|
func New(c client.Caller) *Client {
|
|
return &Client{c: c}
|
|
}
|
|
|
|
// Tools returns the MCP names this package implements.
|
|
func Tools() []string {
|
|
return []string{
|
|
toolFilterSpecs,
|
|
toolDatapoints,
|
|
toolScans,
|
|
toolCreate,
|
|
toolPreview,
|
|
toolRun,
|
|
toolUpdateFilters,
|
|
toolUpdateConfig,
|
|
}
|
|
}
|