Skip to main content
Glama
FindDataTechnology

fd-cn-report

Official

open_industry_rules_dashboard

Launch a local web dashboard to browse, filter, search, and sort 21,698 LLM rules across 31 Shenwan L1 industries with paginated results.

Instructions

Start the industry rules web dashboard with filtering and search.

Opens a web UI at http://localhost: showing all 21,698 LLM rules across 31 申万 L1 industries. Filter by industry, module, keyword; sort by any column; paginated view.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
portNoTCP port to listen on (default 8888).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.4

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden, and it does disclose the key non-obvious trait that this launches a local web server at http://localhost:<port>. However, it omits the behavior that matters most for an agent: whether the call blocks while the server runs, whether a busy port causes failure, and how the dashboard is stopped. Those lifecycle traits are left entirely to inference.

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

Conciseness5/5

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

Two sentences, front-loaded with the action and followed by concrete scope and features. No filler, no restatement of the tool name, and the most decision-relevant information (what it opens and what's in it) comes first.

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

Completeness3/5

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

An output schema exists, so return values need not be explained, and the content scope is well covered. The gap is behavioral: for a server-launching tool the agent still lacks blocking/termination semantics, which no structured field supplies.

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

Parameters3/5

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

One optional parameter with 100% schema description coverage, so the schema already documents port, its default of 8888, and its type; the description adds nothing beyond echoing it as <port> in the URL. Baseline 3 is appropriate when the schema does the work.

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?

States a specific verb and resource ('Start the industry rules web dashboard') and then quantifies the scope it exposes: 21,698 rules across 31 申万 L1 industries with filtering, search, sorting, and pagination. That is enough for an agent to distinguish it from the data-retrieval siblings like list_outline or search_reports, which return records rather than launching a UI.

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

Usage Guidelines3/5

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

Usage is implied by the feature list — an agent can infer this is for interactive browsing/filtering rather than programmatic record retrieval — but the description never states when to prefer it over the many list_*/get_* siblings, nor any prerequisites or exclusions. The filtering capabilities hint at the use case without naming an alternative.

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