返回顶部
m

mx_search

Retrieve timely, authoritative financial news, announcements, research reports, policies, and other finance‑related information using the Meixiang (妙想) search API. Use when the user asks for up‑to‑date financial insight and wants to avoid non‑official or outdated sources.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
776
下载量
0
收藏
概述
安装方式
版本历史

mx_search

# 妙想资讯搜索 Skill (mx_search) ## Overview This skill provides a safe way to query the Meixiang financial search service for news, announcements, research reports, policy documents, trading rules, specific events, impact analyses, and any other external data needed for finance‑related queries. It ensures the results come from authoritative sources and are current. ## Prerequisites 1. Obtain an API key from the Meixiang Skills page. 2. Set the API key in the environment variable `MX_APIKEY`. ```bash export MX_APIKEY="your_api_key_here" ``` 3. Ensure `curl` is available on the system (default on macOS). ## Usage When the user asks a finance‑related question, follow these steps: 1. Construct the query string based on the user's request. 2. Execute the POST request to the Meixiang endpoint: ```bash curl -X POST \ --location 'https://mkapi2.dfcfs.com/finskillshub/api/claw/news-search' \ --header 'Content-Type: application/json' \ --header "apikey:${MX_APIKEY}" \ --data '{"query":"<YOUR_QUERY_HERE>"}' ``` 3. Parse the JSON response. Important fields include: - `title`: concise headline of the information. - `secuList`: list of related securities (code, name, type). - `trunk`: main text or structured data block. 4. Present the information to the user in a readable format, optionally highlighting the securities involved. ## Example **User query:** "立讯精密的资讯" **Command executed:** ```bash curl -X POST --location 'https://mkapi2.dfcfs.com/finskillshub/api/claw/news-search' \ --header 'Content-Type: application/json' \ --header 'apikey:${MX_APIKEY}' \ --data '{"query":"立讯精密的资讯"}' ``` **Sample response excerpt:** ```json { "title": "立讯精密最新研报", "secuList": [{"secuCode":"002475","secuName":"立讯精密","secuType":"股票"}], "trunk": "...report content..." } ``` **Formatted reply to user:** - **标题:** 立讯精密最新研报 - **关联证券:** 002475 立讯精密 (股票) - **内容摘要:** ... (provide concise summary from `trunk`) ## Saving Results (optional) If the user wants to keep the result, you can save the raw JSON to a file in the current work directory: ```bash curl ... > mx_search_result.json ``` Then inform the user of the file path. ## When Not to Use Do not use this skill for non‑financial queries, or when the user explicitly asks for opinion‑based answers without needing source data. ## References - Meixiang API documentation (internal). - Example queries table (see above).

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 mx-search-1775954967 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 mx-search-1775954967 技能

通过命令行安装

skillhub install mx-search-1775954967

下载 Zip 包

⬇ 下载 mx_search v1.0.0

文件大小: 2 KB | 发布时间: 2026-4-13 11:08

v1.0.0 最新 2026-4-13 11:08
- Initial release of mx-search skill for Meixiang financial news API.
- Enables retrieval of up-to-date, authoritative financial news, research reports, policies, and related data.
- Ensures only official, current sources are returned for finance-related queries.
- Includes usage instructions, example commands, and guidance for saving results.
- Not intended for non-financial or opinion-based queries.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部