Mx Search
Retrieve timely, authoritative financial news, announcements, research reports, policies, and other finance‑related information using the Meixiang (妙想) searc...
xpmars
@xpmars
Install
$ openclaw skills install @xpmars/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
- Obtain an API key from the Meixiang Skills page.
- Set the API key in the environment variable
MX_APIKEY.export MX_APIKEY="your_api_key_here" - Ensure
curlis available on the system (default on macOS).
Usage
When the user asks a finance‑related question, follow these steps:
- Construct the query string based on the user's request.
- Execute the POST request to the Meixiang endpoint:
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>"}' - 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.
- Present the information to the user in a readable format, optionally highlighting the securities involved.
Example
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:
- 标题: 立讯精密最新研报
- 关联证券: 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:
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).
Top skills in this category
Planning with files
@othmanadiManus-style persistent file-based planning for AI coding agents: keeps task_plan.md, findings.md, and progress.md on disk so work survives context loss and /clear. Use when asked to plan out, break down, or organize a multi-step project, research task, or any work requiring 5+ tool calls. Supports a
opennews
@infra403Crypto news search, AI ratings, trading signals, and real-time updates via the OpenNews 6551 API. Supports keyword search, coin filtering, source filtering,...
CN Web Search
@joansongjr中文网页搜索 - 聚合 28 个免费搜索引擎,无需 API Key,纯网页抓取,支持公众号/财经/技术/学术/知识/美股/宏观/Pre-IPO搜索。
Polymarket Agent
@andretutaResearch Polymarket markets, whale flow and smart money; optionally trade a Polygon wallet behind deterministic risk guard-rails.
Web Browsing
@tankebuaaBrowse and summarize websites, extract content from URLs, search the web for information. Use when user asks to visit a website, get webpage content, search...