Stocktoday Skill
WarnAudited by ClawScan on May 10, 2026.
Overview
This stock-data skill is mostly purpose-aligned, but it can send the user's API token to several hardcoded backup servers over plain HTTP that are not clearly disclosed.
Review the hardcoded backup URLs before installing. This skill appears to be a legitimate market-data MCP wrapper, but you should only provide a StockToday/Tushare token if you trust the main service and all fallback servers, or if you can configure the skill to use only trusted HTTPS endpoints.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If the main API fails or is unreachable, the user's token may be sent to fallback servers over unencrypted HTTP, exposing the token to those servers or network observers.
The skill reads an API token from the environment and sends it in POST bodies to the main API plus three hardcoded fallback servers, several using plain HTTP IP addresses. This expands where the credential can go beyond the primary documented HTTPS endpoint.
const TOKEN = process.env.STOCKTODAY_TOKEN || ""; ... const BACKUP_URL1 = process.env.STOCKTODAY_BACKUP_URL1 || "http://111.229.164.2:8083/"; ... formData.append("TOKEN", token); ... const urls = [BASE_URL, BACKUP_URL1, BACKUP_URL2, BACKUP_URL3];Install only if you trust these backup endpoints. Prefer setting STOCKTODAY_URL and backup URL environment variables to trusted HTTPS endpoints, or remove/disable the HTTP fallback behavior before use.
Users may believe their token is only sent to the documented StockToday URL, while the runtime can send it elsewhere during fallback.
The user-facing configuration describes a token and one optional API address, but does not clearly tell users that the runtime may also send the token to three hardcoded backup IP endpoints.
export STOCKTODAY_TOKEN="your_token" ... export STOCKTODAY_URL="https://tushare.citydata.club/"
The skill should clearly document all default network destinations, especially backup servers and whether they use HTTPS, before users provide a token.
