Skip to main content
Glama

get_regulatory_updates

Read-onlyIdempotent

Recent regulatory statements affecting Crank's scope (free read).

Returns SEC / CFTC / FinCEN press releases and rule proposals from a scheduled daily scan, LLM-classified for relevance to Crank: DeFi, crypto perps, tokenized equities, autonomous agent trading, and non-custodial custody. Each update carries the issuing agency, title, url, relevance (high/medium/low) + score, matched topics, and a one-line factual summary; results are ranked by relevance then recency. window_hours bounds the lookback (default 168 = 7 days, capped at 720 = 30 days); min_relevance filters by floor (high/medium/low); agency optionally narrows to one body (SEC, CFTC, FinCEN). Relevance is a compliance-triage signal, not legal advice. Not financial advice.

Workflow: INTELLIGENCE / COMPLIANCE step -- check the current regulatory posture around perps, tokenized equities, or agent trading before acting on a strategy.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agencyNo
caller_idNo
window_hoursNo
min_relevanceNolow

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already carry the safety profile (readOnlyHint, openWorldHint, idempotentHint all true, destructiveHint false), so the description starts at an advantage. It meaningfully adds context: the 'scheduled daily scan,' LLM-classification pipeline, ranking scheme, and frank disclosures that relevance is 'a compliance-triage signal, not legal advice.' Together these give the agent an accurate mental model of data origin and limitations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loaded with the most important fact in sentence one, then moves logically from purpose → return shape → parameters → disclaimers → workflow. Dense but not padded; the parentheticals '(free read)', '(default 168 = 7 days…)', and trailing 'Not financial advice.' are short and load-bearing. A very minor amount of redundancy between the opening scope list and the workflow section keeps this from a 5.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no required parameters, an output schema, and four modest params, the description is complete: input semantics, output shape and ordering, use-case context, and disclaimers are all present. Rate limits, error conditions, and pagination are not mentioned, but those are minor given the described read-only, capped-lookback semantics.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is a stark 0%, so the description carries the full burden — and nails it. It documents window_hours with units, default, and cap (168=7 days, capped at 720=30 days); min_relevance accepted values; agency options (SEC, CFTC, FinCEN); and the exact output fields ('relevance (high/medium/low) + score, matched topics, one-line factual summary'). Only caller_id isn't spelled out, but it's self-evidently a housekeeping param.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Opens with a precise verb+resource statement: 'Recent regulatory statements affecting Crank's scope' followed by explicit examples of what is returned (SEC/CFTC/FinCEN press releases, rule proposals). The description differentiates this from the similarly-named sibling get_technology_updates by scoping to regulators (SEC/CFTC/FinCEN), topics (DeFi, perps, tokenized equities), and classification criteria.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Ends with an explicit workflow directive: 'check the current regulatory posture around perps, tokenized equities, or agent trading before acting on a strategy,' which tells the agent when to invoke it. However, it doesn't name alternative tools or explicitly state when NOT to use this one, relying on siblings section to imply the choices.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.2/5.0
Disambiguation2/5

Multiple tools overlap significantly: close_perp_position vs perp_close, get_leaderboard vs get_score_leaderboard vs get_strategy_leaderboard, get_venue_status vs get_all_venues_status, send_token_social vs bulk_send_social, and get_crank_score vs get_score. Several read-only tools have nearly identical purposes, and the descriptions do not always clarify boundaries.

Naming Consistency4/5

Most tools follow a consistent verb_noun snake_case pattern (get_balances, create_strategy, set_alert, list_webhooks). However, there are deviations like 'lst_swap', 'jupiter_swap', 'flash_loan', 'sr_backtest', and the use of both 'get_' and 'list_' for reads, plus category prefixes like 'perp_' and 'strategy_' that vary in order. Overall still readable and predictable.

Tool Count1/5

177 tools is an extreme count for any server, far exceeding the 25+ threshold for 'too many'. Even a full DeFi platform does not need this many separate operations; the surface is overwhelming and clearly not well-scoped.

Completeness3/5

The domain (Solana DeFi trading) is covered extensively across swaps, perps, lending, staking, strategies, signals, and support. However, there are notable gaps: no lend_withdraw, no direct way to close a lending position, no spot order cancellation (though aggregator-based swaps may not need it), and a general lack of tiered account management. The huge number of tools makes it hard to identify missing lifecycle steps.

Resources