feat: add equity read MCP methods

This commit is contained in:
2026-09-01 12:31:18 -05:00
parent 87f4f40d77
commit 658ba5efba
3 changed files with 904 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
package equity
import "s1d3sw1ped/robinhood-agentic-mcp/client"
// Client wraps Robinhood equity MCP tools.
type Client struct {
c client.Caller
}
// New returns an equity 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{
toolPositions,
toolTaxLots,
toolQuotes,
toolOrders,
toolTradability,
toolHistoricals,
toolFundamentals,
toolPriceBook,
toolTechnicalIndicators,
toolNews,
}
}