Skip to main content
Glama
chestnutsheep

DeepFusion MCP Server

添加持仓记录

portfolio_add

Add a simulated holding record to track unrealized gains and losses. Specify symbol, price, volume, and optional market to monitor investment performance.

Instructions

在模拟盘中添加一笔持仓记录,用于后续跟踪盈亏

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
priceYes买入价格
marketNo市场: sh=沪市, sz=深市, bj=北交所, hk=港股, us=美股sh
symbolYes股票或币种代码
volumeYes买入数量

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It adds valuable context by noting this is a simulated (paper trading) operation intended for later P&L tracking, but it does not disclose side effects like duplicate handling, whether the record overwrites an existing position, or what response to expect.

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?

The description is a single, front-loaded sentence that immediately states the action and context, with no redundant or extraneous information.

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?

For a simple 4-parameter add-record tool, the description conveys the core purpose and the simulated environment, but because there is no output schema and no annotations, the agent is left without guidance on return values, error behavior, or idempotency. A slightly richer description would make it more complete.

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?

Schema description coverage is 100%, with each parameter (price, volume, symbol, market) having a clear description in the schema. The tool description itself adds no parameter-level meaning, so it stays at the baseline of 3.

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?

The description clearly states the action ('add'), the resource ('position record'), and the context ('simulated account'), making it instantly distinguishable from sibling tools like portfolio_view and portfolio_chart which read rather than write.

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?

The description implies that this tool is for recording simulated positions for P&L tracking, but it does not explicitly state when to use it versus the portfolio_view or portfolio_chart siblings, nor does it mention any exclusions or alternative tools.

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

Deploy Server

Other Tools