yeepay_yop_sdk_and_tools_guide
Access detailed usage guides and best practices for YOP SDKs and tools, enabling efficient integration with Yeepay's open payment platform. Retrieve markdown-formatted instructions and explore linked resources for further details.
Instructions
通过此工具,获取易宝支付开放平台(YOP)提供的各种SDK和工具的使用说明,内容中包含链接时可以调用工具yeepay_yop_link_detail进一步获取其详细内容
Returns: str: 易宝支付开放平台(YOP)提供的各种SDK和工具的使用说明,以及对接最佳实践等(markdown格式)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- yop_mcp/main.py:132-147 (handler)The handler function decorated with @mcp.tool(), which registers and implements the 'yeepay_yop_sdk_and_tools_guide' tool. It fetches and returns the SDK and tools guide content from the Yeepay YOP platform in markdown format, with error handling.@mcp.tool() def yeepay_yop_sdk_and_tools_guide() -> str: """ 通过此工具,获取易宝支付开放平台(YOP)提供的各种SDK和工具的使用说明,内容中包含链接时可以调用工具yeepay_yop_link_detail进一步获取其详细内容 Returns: str: 易宝支付开放平台(YOP)提供的各种SDK和工具的使用说明,以及对接最佳实践等(markdown格式) """ try: return HttpUtils.download_content( "https://open.yeepay.com/docs-v3/platform/llms.txt" ) except (ValueError, TypeError, ConnectionError): return "HTTP请求失败, url: https://open.yeepay.com/docs-v3/platform/llms.txt"