yeepay_yop_overview
Get YOP platform specifications, integration processes, and sitemap information to understand Yeepay's payment open platform requirements and access linked details.
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:14-24 (handler)The core handler function for the 'yeepay_yop_overview' tool. It is registered via the @mcp.tool() decorator and fetches overview content from Yeepay YOP platform using HttpUtils.@mcp.tool() def yeepay_yop_overview() -> str: """ 通过此工具,可以了解易宝支付开放平台(YOP)的平台规范,接入流程,网站地图,内容中包含链接时可以调用工具yeepay_yop_link_detail进一步获取其详细内容 Returns: str: 易宝支付开放平台(YOP)的概览信息(markdown格式) """ return HttpUtils.download_content("https://open.yeepay.com/docs-v3/llms.txt")