Skip to main content
Glama
leewhite97

xueqiu-mcp

by leewhite97

获取帖子详情

get_post_detail
Read-onlyIdempotent

Retrieve the full content and engagement metrics of a Xueqiu post by supplying its numeric post ID.

Instructions

获取某篇雪球帖子/文章的完整内容,包括正文、互动数据等。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
post_idYes帖子ID(纯数字),可从帖子URL中获取

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
postYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds that the result includes full content and interaction data, but does not disclose error behavior, auth needs, or rate limits. This is acceptable given the strong annotations but not especially rich.

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 focused sentence that front-loads the core purpose and includes the key returned content categories without unnecessary words.

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?

This is a simple single-parameter read-only lookup tool with a complete input schema, an output schema present, and strong annotations. The description and structured fields together provide enough context for an agent to select and invoke the tool correctly.

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%; the only parameter post_id is clearly documented in the schema as a pure numeric ID retrievable from the post URL. The description itself adds no parameter-level detail beyond the schema, so the baseline of 3 is appropriate.

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 states the verb (获取), resource (某篇雪球帖子/文章), and scope (完整内容,包括正文、互动数据). It conveys the tool's purpose well, though it does not explicitly contrast itself with siblings like get_post_comments or get_hot_posts.

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 intended use is implied: call this when you need the full content of a specific post/article by post_id. However, there is no explicit guidance on when to prefer this over alternatives or when not to use it.

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