Query real-time and historical financial data across equities and crypto prices, market moves, metrics, and trends for analysis, alerts, and reporting

PassAudited by ClawScan on May 1, 2026.

Overview

MarketPulse appears to be a coherent, read-only market-data client that uses a required AIsa API key; no artifact-backed malicious or overbroad behavior was found.

This skill looks safe for its stated purpose of querying market data. Before installing, confirm you trust the AIsa API provider, use a dedicated API key if possible, and remember that tickers, dates, screening filters, or portfolio-style queries may be sent to that provider.

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.

What this means

Using the skill gives the agent access to your AIsa API credential for market-data requests, which may affect your account usage or billing depending on the provider.

Why it was flagged

The client reads an API key from the environment and sends it as a bearer token to the market-data provider. This is purpose-aligned for authenticated API access, with no artifact evidence of logging or unrelated use.

Skill content
self.api_key = api_key or os.environ.get("AISA_API_KEY") ... "Authorization": f"Bearer {self.api_key}"
Recommendation

Use a dedicated, least-privileged API key if available, and rotate it if you stop using the skill.

What this means

The agent can query the AIsa API using tickers, dates, and screening filters you provide, which may reveal your research interests to the provider.

Why it was flagged

The skill enables external API requests, including a POST-based stock screener, but the visible operations are scoped to market-data retrieval/search and match the stated purpose.

Skill content
BASE_URL = "https://api.aisa.one/apis/v1" ... def screen_stocks(self, filters: Dict[str, Any]) -> Dict[str, Any]: return self._request("POST", "/financial/search/stock", data={"filters": filters})
Recommendation

Avoid submitting sensitive personal portfolio details unless you are comfortable sharing those queries with the AIsa service.