Skip to main content
Glama
leewhite97

xueqiu-mcp

by leewhite97

获取我的关注列表

get_my_following
Read-onlyIdempotent

Retrieve the paginated list of accounts the current user follows. Use has_more and next_page to navigate through additional results.

Instructions

获取当前登录用户关注的人的列表(分页)。需要有效登录态。返回 has_more 和 next_page 用于继续翻页。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo页码,从 1 开始
countNo每页数量,默认 20,最大 100

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countYes
totalNo
usersYes
has_moreYes
next_pageNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, and the description adds meaningful behavioral context: authentication is required, and pagination uses has_more and next_page. It does not contradict any annotations.

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 concise and well-structured: it states the core action first, then the auth requirement, then the pagination behavior. Every sentence adds value with no redundant information.

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

Completeness5/5

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

For a simple paginated read tool with fully documented parameters, rich annotations, and an output schema, the description covers all necessary operational context: it names the resource, auth requirement, and how to continue pagination. Nothing essential is missing.

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%, so the schema already documents page and count with defaults, minimums, and maximums. The description adds no additional parameter semantics beyond what the schema provides, which is acceptable given the complete schema coverage.

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 explicitly states the tool retrieves the list of people followed by the current logged-in user, with pagination. This clearly distinguishes it from sibling tools like get_user_profile or get_current_user by specifying the resource ('关注的人') and the ownership ('当前登录用户').

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 gives important usage context: it requires a valid login session and is scoped to the current user. However, it does not explicitly mention when to prefer this tool over alternatives such as get_user_profile or search_users, leaving some routing to inference.

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