feat: add crypto MCP methods

This commit is contained in:
2026-09-01 13:05:29 -05:00
parent 4318d2817f
commit 1af5d7145b
3 changed files with 565 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
package crypto
import "s1d3sw1ped/robinhood-agentic-mcp/client"
// Client wraps Robinhood crypto MCP tools.
type Client struct {
c client.Caller
}
// New returns a crypto 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{
toolPairs,
toolQuotes,
toolPositions,
toolOrders,
toolPreview,
toolPlace,
toolCancel,
}
}