Skip to main content
Glama

get_inner_trade_data

Retrieve company insider trading data by providing a stock symbol for detailed analysis. Simplify access to key financial insights.

Instructions

Get company insider trading data.

Input Schema

NameRequiredDescriptionDefault
symbolYesStock symbol/ticker (e.g. '000001')

Input Schema (JSON Schema)

{ "properties": { "symbol": { "description": "Stock symbol/ticker (e.g. '000001')", "title": "Symbol", "type": "string" } }, "required": [ "symbol" ], "type": "object" }

Implementation Reference

  • The main handler function for the 'get_inner_trade_data' tool. It is decorated with @mcp.tool for registration, defines the input schema via Annotated types, fetches insider trading data from akshare_one, and returns it as JSON.
    @mcp.tool def get_inner_trade_data( symbol: Annotated[str, Field(description="Stock symbol/ticker (e.g. '000001')")], ) -> str: """Get company insider trading data.""" df = ako.get_inner_trade_data(symbol, source="xueqiu") return df.to_json(orient="records") or "[]"

Other Tools

Related Tools

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/zwldarren/akshare-one-mcp'

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