首页龙虾技能列表 › Mx Search

Mx Search

v1.0.0

Retrieve timely, authoritative financial news, announcements, research reports, policies, and other finance‑related information using the Meixiang (妙想) searc...

0· 830·45 当前·45 累计
by @xpmars·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/15
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
medium confidence
The skill's runtime instructions match its stated purpose (querying the Meixiang financial search API), but the package metadata omits the required API key and the curl dependency and points to an external endpoint — these mismatches warrant caution.
评估建议
This skill appears to perform Meixiang financial searches as described, but the package metadata does not declare the MX_APIKEY env var or the curl dependency that the SKILL.md requires. Before installing or using it: 1) verify the API host (https://mkapi2.dfcfs.com) and the origin/trustworthiness of Meixiang; 2) only provide an API key with appropriate, limited permissions and consider using an ephemeral or read-only key; 3) confirm where results are stored and avoid placing sensitive credentia...
详细分析 ▾
用途与能力
The SKILL.md describes a focused financial search skill that calls a Meixiang (妙想) API; the described capability coheres with the name and description. However, the registry metadata lists no required environment variables or binaries while the instructions explicitly require MX_APIKEY and curl — an inconsistency between declared requirements and actual runtime needs.
指令范围
The instructions are narrowly scoped to constructing a query, POSTing JSON to the Meixiang endpoint, parsing the JSON fields, and optionally saving results to a local file. The skill does not instruct the agent to read unrelated files, harvest other environment variables, or transmit data to unexpected endpoints beyond the stated API.
安装机制
This is an instruction-only skill with no install spec or code files (lowest install risk). The only runtime dependency mentioned is curl (standard on many systems); the package metadata should have declared that, but no packages or downloads are requested by the skill itself.
凭证需求
The SKILL.md requires an API key provided via MX_APIKEY, but the registry metadata declares no required env vars or primary credential. That mismatch is concerning because users and the platform won't be informed programmatically that a secret is needed. The skill requests only one credential (MX_APIKEY), which is proportionate to the described function if declared correctly.
持久化与权限
The skill does not request always:true, does not modify other skills, and has no install steps that persist code or credentials. Its optional suggestion to save JSON to the current directory is a user action and not a hidden persistence mechanism.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/3/14

- 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.

● 无害

安装命令 点击复制

官方npx clawhub@latest install mx-search
镜像加速npx clawhub@latest install mx-search --registry https://cn.clawhub-mirror.com

技能文档

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 curl is 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":""}'
   
  • 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).
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务