Install
openclaw skills install mx-searchRetrieve 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.
openclaw skills install mx-searchThis 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.
MX_APIKEY.
export MX_APIKEY="your_api_key_here"
curl is available on the system (default on macOS).When the user asks a finance‑related question, follow these steps:
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>"}'
title: concise headline of the information.secuList: list of related securities (code, name, type).trunk: main text or structured data block.User query: "立讯精密的资讯"
Command executed:
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:
{
"title": "立讯精密最新研报",
"secuList": [{"secuCode":"002475","secuName":"立讯精密","secuType":"股票"}],
"trunk": "...report content..."
}
Formatted reply to user:
trunk)If the user wants to keep the result, you can save the raw JSON to a file in the current work directory:
curl ... > mx_search_result.json
Then inform the user of the file path.
Do not use this skill for non‑financial queries, or when the user explicitly asks for opinion‑based answers without needing source data.