Skip to main content
Glama
al-one

MCP Server for stock and crypto

trading_suggest

Provides AI-driven investment recommendations for stocks and cryptocurrencies based on data analysis, suggesting buy, sell, or hold actions with confidence scores and reasoning.

Instructions

基于AI对其他工具提供的数据分析结果给出具体投资建议

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
symbolYes股票代码或加密币种
actionYes推荐操作: buy/sell/hold
scoreYes置信度,范围: 0-100
reasonYes推荐理由

Implementation Reference

  • The handler function decorated with @mcp.tool(), defining the tool 'trading_suggest'. It structures the input parameters into a JSON-like dictionary for investment suggestions.
    @mcp.tool( title="给出投资建议", description="基于AI对其他工具提供的数据分析结果给出具体投资建议", ) def trading_suggest( symbol: str = Field(description="股票代码或加密币种"), action: str = Field(description="推荐操作: buy/sell/hold"), score: int = Field(description="置信度,范围: 0-100"), reason: str = Field(description="推荐理由"), ): return { "symbol": symbol, "action": action, "score": score, "reason": reason, }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/al-one/mcp-aktools'

If you have feedback or need assistance with the MCP directory API, please join our Discord server