yeepay_yop_product_overview
Get an overview of YeePay Open Platform (YOP) product capabilities in markdown format, with links to detailed content for further exploration.
Instructions
通过此工具,获取易宝支付开放平台(YOP)的产品能力概览,内容中包含链接时可以调用工具yeepay_yop_link_detail进一步获取其详细内容
Returns: str: 易宝支付开放平台(YOP)的产品能力概览(markdown格式)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- yop_mcp/main.py:26-37 (handler)The handler function for the 'yeepay_yop_product_overview' tool. It is registered via the @mcp.tool() decorator and fetches the product overview content from the Yeepay YOP platform using HttpUtils.download_content.@mcp.tool() def yeepay_yop_product_overview() -> str: """ 通过此工具,获取易宝支付开放平台(YOP)的产品能力概览,内容中包含链接时可以调用工具yeepay_yop_link_detail进一步获取其详细内容 Returns: str: 易宝支付开放平台(YOP)的产品能力概览(markdown格式) """ return HttpUtils.download_content( "https://open.yeepay.com/docs-v3/product/llms.txt" )
- yop_mcp/main.py:26-26 (registration)The @mcp.tool() decorator registers the yeepay_yop_product_overview function as an MCP tool.@mcp.tool()