Skip to main content
Glama
kevynf

AKBridge MCP Server

by kevynf

get_qhkc_fund_money_change

Read-onlyIdempotent

Retrieve the turnover distribution of futures products for a specified date, showing each product's trading value and ratio to total market turnover.

Instructions

奇货可查-资金-成交额分布 可获取数据的时间段为:"2016-10-10:2019-09-30" :param url: 网址 :param date: 中文名称 :return: 成交额分布 :rtype: pandas.DataFrame name value ratio date 沪镍 2.292e+10 0.145963 2019-09-25 沪银 1.22788e+10 0.0781956 2019-09-25 沪金 11196166005 0.0713011 2019-09-25 IC 1.10958e+10 0.0706619 2019-09-25 螺纹钢 1.02918e+10 0.0655416 2019-09-25 IF 9134893794 0.0581742 2019-09-25 铁矿石 7991427128 0.0508922 2019-09-25 原油 7695016910 0.0490045 2019-09-25 焦炭 5936589656 0.0378063 2019-09-25 甲醇 4.00966e+09 0.0255349 2019-09-25 沪铜 3806033147 0.0242381 2019-09-25 乙二醇 3.64376e+09 0.0232047 2019-09-25 橡胶 3286445958 0.0209292 2019-09-25 燃料油 3227355810 0.0205529 2019-09-25 豆粕 3124163112 0.0198958 2019-09-25 苹果 3.08134e+09 0.0196231 2019-09-25 沪锌 3076039116 0.0195893 2019-09-25 PTA 2.93901e+09 0.0187167 2019-09-25 IH 2578970688 0.0164238 2019-09-25 豆油 2371404714 0.0151019 2019-09-25 沥青 2.17662e+09 0.0138615 2019-09-25 白糖 1814626125 0.0115562 2019-09-25 棕榈油 1687834936 0.0107487 2019-09-25 菜粕 1.58244e+09 0.0100775 2019-09-25 焦煤 1.52553e+09 0.00971509 2019-09-25 PP 1.51981e+09 0.0096787 2019-09-25 塑料 1468988065 0.00935503 2019-09-25 沪铝 1.35968e+09 0.00865893 2019-09-25 不锈钢 1213656556 0.00772899 2019-09-25 棉花 1186243285 0.00755441 2019-09-25 鸡蛋 1175239681 0.00748433 2019-09-25 热卷 1.12293e+09 0.00715118 2019-09-25 纸浆 9.23876e+08 0.00588356 2019-09-25 沪铅 659297524 0.00419864 2019-09-25 菜油 587372274 0.00374059 2019-09-25 郑煤 5.82494e+08 0.00370953 2019-09-25 红枣 499089640 0.00317838 2019-09-25 玉米 458548474 0.0029202 2019-09-25 PVC 334434410 0.00212979 2019-09-25 玻璃 333819628 0.00212588 2019-09-25 沪锡 2.02186e+08 0.00128759 2019-09-25 豆二 185554169 0.00118167 2019-09-25 豆一 184729205 0.00117642 2019-09-25 硅铁 1.54719e+08 0.000985305 2019-09-25 淀粉 112331976 0.000715369 2019-09-25 锰硅 1.10791e+08 0.000705557 2019-09-25 尿素 78648750 0.000500862 2019-09-25 棉纱 5.17932e+07 0.000329837 2019-09-25 NR 34806750 0.000221661 2019-09-25 粳米 7375683 4.69709e-05 2019-09-25 油菜籽 2680922 1.7073e-05 2019-09-25 纤维板 2286460 1.4561e-05 2019-09-25 胶合板 831250 5.29369e-06 2019-09-25 强麦 472400 3.00841e-06 2019-09-25 晚籼稻 159318 1.01459e-06 2019-09-25 线材 90608 5.77023e-07 2019-09-25 粳稻 0 0 2019-09-25 普麦 0 0 2019-09-25 稻谷 0 0 2019-09-25

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNohttps://qhkch.com/ajax/fund_deal_pie.php
dateNo20190924
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint true, so the safety profile is established. The description adds the data availability range and shows the output format via sample data, but doesn't disclose additional behavioral traits such as pagination, error handling, or rate limits. No contradiction with annotations.

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

Conciseness2/5

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

The description is bloated by a large sample DataFrame extending dozens of rows, which consumes most of the text. Essential information like the availability range and param meanings is buried at the top, but the sample output overwhelms. This is not concise nor well-structured for quick agent parsing.

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?

Given no output schema, the sample data compensates by showing the columns (name, value, ratio, date) and the return type (pandas.DataFrame). The data range is stated, and defaults are in schema. However, the misleading param description and lack of error handling info leave some gaps.

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

Parameters2/5

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

The schema has no descriptions (0% coverage), so the description must compensate, but it fails. The param documentation labels date as "中文名称" (Chinese name), which is misleading, and doesn't clarify the expected date format (YYYYMMDD vs YYYY-MM-DD). The availability range is provided but not explicitly linked to the date parameter.

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

Purpose4/5

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

The description clearly identifies the tool as retrieving turnover distribution ("成交额分布") from the Qihuo Kechai data source, and specifies the available date range. It distinguishes from sibling tools like get_qhkc_fund_bs and get_qhkc_fund_position by focusing on transaction amount distribution, though it doesn't explicitly name alternatives.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It only states the data availability range and parameters, with no mention of exclusions or preferred contexts. The agent is left to infer usage from the name.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kevynf/akbridge'

If you have feedback or need assistance with the MCP directory API, please join our Discord server