xingce-solver
The xingce-solver server is an assistive toolkit for LLM agents to tackle Chinese civil service exam (行测) questions. It provides structured routing, method retrieval, solving scaffolds, and constrained prompt generation—without directly answering questions itself.
Question Routing (
route_xingce_question): Classify a question into the appropriate exam module (e.g., 资料分析, 逻辑判断, 图形推理) with confidence scores and recommended analysis tracks; supportsmodule_hintandsection_contextfor guided routing.Lightweight Classification (
classify_question): Quickly route a question stem to preliminary modules and relevant method cards via keyword matching.Method Card Retrieval (
get_method_card,search_methods): Fetch full method cards by ID or search the 292-card knowledge base by keyword, with optional module filtering.Source Reference Lookup (
get_source_reference): Retrieve source files, page references, confidence levels, and review flags for a given method.Structured Solving Drafts (
solve_data_analysis,solve_logic_reasoning): Build step-by-step solving drafts for 资料分析 and 逻辑判断 questions that an LLM can follow to produce a final answer.Methodological Scaffolds: Read-only step-by-step guides for six modules—Graphic Reasoning, Definition Judgement, Analogy Reasoning, Logic Analysis, Quantity Relation, and Verbal Reasoning—covering observation order, checklists, response templates, and uncertainty policies.
Prompt Composition (
compose_xingce_analysis_prompt,compose_xingce_answer_prompt): Generate structured analysis or conservative answer prompts incorporating routing results, scaffold summaries, strict output schemas, and safety contracts.Safety Gates: Hard-coded checks block answering when visual content or materials are missing, routing is uncertain, or answer mode is disabled—returning a block reason instead of a guess.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@xingce-solver资料分析:2020年收入132亿元,同比增10%,求2019年收入?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Huasheng Shisan · Civil Service Exam Problem-Solving MCP Assistant
📚 Based on the Huasheng Shisan civil service exam knowledge base, 442 method cards covering four major modules: data analysis, quantitative relations, logical reasoning, and verbal comprehension. Paired with AI assistants (Claude Desktop, etc.), you can solve problems intelligently anytime, anywhere.
🚀 One-Minute Quick Start
Method 1: Let the Agent Install It for You (Easiest)
If you're a user of AI coding tools like Claude Code, Codex CLI, Cursor, Windsurf, just send the following sentence to it:
"Help me install this MCP server: https://github.com/heihei999/huasheng-mcp"
The Agent will automatically complete all the download, installation, and configuration steps. You don't have to do anything.
Method 2: Install It Yourself
Step 1: Install
pip install xingce-solver[sse]If you don't have Python installed, go to https://www.python.org/downloads/ to download and install it, and check "Add Python to PATH".
Step 2: Start the Service
xingce-solver-mcp-sseWhen you see Uvicorn running on http://0.0.0.0:8000, the service has started successfully 👌
Step 3: Connect to the AI Assistant
For Claude Desktop users, add the following to the configuration file (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"行测解题": {
"type": "sse",
"url": "http://localhost:8000/sse"
}
}
}After saving, restart Claude Desktop, and you can directly call the civil service exam problem-solving tools in the chat!
ChatGPT / Other AI users: After starting the service, enter the address
http://localhost:8000/ssein any MCP SSE-compatible client.
Related MCP server: Sequential-Thinking
📖 Knowledge Base Overview
The knowledge base contains 442 method cards in total, covering the four major modules of the civil service exam:
Module | Number of Cards | Description |
📊 Data Analysis | 52 cards | Growth rates, proportions, multiples, averages, etc. |
🔢 Quantitative Relations | 118 cards | Work problems, travel problems, permutations and combinations, etc. |
🧠 Logical Reasoning | 148 cards | Figure reasoning, logical judgment, definition judgment, analogy reasoning |
💬 Verbal Comprehension | 95 cards | Main idea and intent, sentence expression, logical fill-in-the-blank |
🆕 Verbal Comprehension (New) | 18 cards | Sentence ordering, detail judgment, etc. |
🆕 Figure Reasoning (New) | 10 cards | Figure pattern special topics |
Total | 442 cards | Covers all core question types |
🛠️ Available Problem-Solving Tools (15 in total)
After connecting successfully, the AI assistant will automatically recognize the following tools:
Tool | What It Does |
| 📊 Solve data analysis questions |
| 🧠 Solve logical judgment questions |
| 🔍 Identify which module a question belongs to |
| 🔎 Search for problem-solving methods |
| 📇 View the detailed content of a method |
| 📋 View the source of a method |
| 🧭 Determine the question type and recommend a solution |
| 📝 Compose an analysis prompt |
| ✅ Generate a conservative answer prompt |
| 🎨 Figure reasoning method framework |
| 📌 Definition judgment method framework |
| 🔗 Analogy reasoning method framework |
| ⚖️ Analytical reasoning method framework |
| 🔢 Quantitative relations method framework |
| 💬 Verbal comprehension method framework |
🎯 Usage Examples in AI Assistants
All AI assistants that support MCP SSE can be connected (Claude Desktop, ChatGPT, Cherry Studio, etc.). Among them, Cherry Studio visualizes each tool call process, so beginners can intuitively see how the AI calls the knowledge base step by step to solve problems. It's especially suitable for those new to MCP.
Method 1: Send Text Questions Directly
After connecting, just type your question:
"Help me solve a data analysis question: In 2020, the revenue of a certain industry was 13.2 billion yuan, a year-over-year increase of 10%. What was the approximate revenue in 2019? A. 10 billion yuan B. 11 billion yuan C. 12 billion yuan D. 13.2 billion yuan"
The AI assistant will automatically call the tools and return the analysis process and answer.
Method 2: Send a Screenshot and Let the AI Read the Question (Highly Recommended)
Take a screenshot of a question from a practice app, PDF, or online course → send the screenshot directly to the AI assistant → the AI uses its "eyes" to read the image → automatically calls the problem-solving tools → instant answer
Any AI assistant that supports multimodal input can do this (Claude Desktop, ChatGPT, etc.). You don't need to type manually—just take a photo or screenshot. It's especially convenient for practicing on mobile or tablet.
Method 3: Search for Problem-Solving Methods
"Search for problem-solving methods about growth rate comparison"
The AI assistant will call the search_methods tool to find matching problem-solving techniques from the 442 method cards.
Method 4: Let the Agent Batch-Practice Questions
If you're using a coding agent like Claude Code or Codex, you can give it a path to process in batches:
"Read all the civil service exam question images in this folder, call the problem-solving tools one by one, and compile the answers into a table"
Great for intensive practice right before the exam.
📝 Battle-Tested Problem-Solving Prompt
A problem-solving SOP that the author has verified through real practice, which makes the AI strictly follow the "route → get scaffold → solve by rules" chain when calling MCP tools, preventing the AI from skipping the knowledge base and answering based on intuition. Copy the entire block below and send it to the AI assistant:
你是一个专业的公考行测名师。每次解答行测题目时,你必须严格遵循以下 SOP(标准操作流程) 链条来使用你的 MCP 知识库,绝不能跳过或卡死在任何一步:
【强制解题步骤】
第一步:提取与路由
当你收到用户的题目(或图片)时,你必须首先调用路由工具 route_xingce_question。
question_text 参数:仅填入你提取出来的纯净"行测题目原文"(如果有图片,必须提取图片中的完整题目文字,绝不能只填用户的闲聊!)。
module_hint 参数:如果用户指定了方法(如"十字交叉法"),必须填入此处;若无指定则留空。
第二步:获取脚手架
路由工具会返回一个结果,其中包含 recommended_tool(例如 get_quantity_relation_scaffold)。看清楚推荐的工具名后,你必须立刻去调用那个推荐的工具,从而获取详细的解题规则和公式!
注意:初次解答时禁止重复调用第一步的路由工具。但如果用户后续反驳、补充条件或提出新方法,允许你再次调用路由工具重新查阅资料!
第三步:按规则解答
拿到脚手架规则后,严格按照知识库给出的模板和步骤,结合用户指定的思路,为用户深度解答。
【异常兜底】
如果在第一步返回 "unknown" 或无匹配,或者在任何一步发生错误,只需尝试 1 次。如果依然失败,请立刻彻底放弃调用工具,直接动用你的内部推理能力为用户解答!⚙️ Advanced Settings
Changing the Port
The default port is 8000. If it's occupied, you can change it:
set MCP_PORT=8080
xingce-solver-mcp-sseLAN Sharing
To let other devices on the same LAN use it:
set MCP_HOST=0.0.0.0
xingce-solver-mcp-sseThen other devices connect to http://your-IP-address:8000/sse.
🧪 Test Status
✅ 661 tests passed, 35 skipped, with full coverage of all 442 method cards in the knowledge base.
📋 Version History
Version | Highlights |
v0.7.0 | Knowledge base expanded from 292 to 442 cards, added SSE server, beginner-friendly |
v0.6.0 | Figure reasoning framework, 8 anti-patterns |
v0.5.1 | Module context boundary hardening, verified with 330 real exam questions |
v0.5.0 | Manual override for module context |
v0.4.3 | Conservative routing hardening, 57/60 on a 60-question stress test |
v0.4.2 | Data material signal recognition |
v0.4.1 | Answer gating security hardening |
v0.4.0 | First MCP integration version |
💡 Questions? Submit them on GitHub Issues
Available Tools
15 toolsclassify_questionC
Route a question stem to preliminary modules and method cards.
| Name | Required | Description | Default |
|---|---|---|---|
| question_text | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fails to disclose behavioral traits like side effects, permissions, or return behaviors. It only says 'route' without detailing the routing mechanism or output.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that communicates the core action without extraneous words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema (not detailed here), the description omits return behavior, side effects, and how the output relates to routing. It is insufficient for a tool in a complex domain with many siblings.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The sole parameter 'question_text' is self-explanatory by name, and the schema has no descriptions. The description adds no further meaning, but given only one parameter, the agent can infer its purpose.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool routes a question stem to preliminary modules and method cards, specifying a verb and resource. However, 'preliminary modules' is somewhat vague, and the tool's exact function could be more distinct from siblings like route_xingce_question.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives such as route_xingce_question or search_methods. The description lacks context about prerequisites or scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compose_xingce_analysis_promptA
Compose a structured analysis prompt from question and route result. Supports module_hint / section_context to guide routing by exam section context. Does not solve questions, compute answers, or select options. Returns prompt_text for LLM consumption.
| Name | Required | Description | Default |
|---|---|---|---|
| options | No | ||
| module_hint | No | ||
| strict_mode | No | ||
| image_present | No | ||
| question_text | Yes | ||
| section_context | No | ||
| include_scaffold_summary | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It clearly states the tool does not solve questions, compute answers, or select options, and returns prompt_text for LLM consumption. This provides good insight into its behavior and limitations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences with front-loaded purpose, clear exclusions, and no wasted words. Excellent structure.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description adequately conveys the core function, but fails to explain the role of 'route result' (not in schema) and how the tool fits with siblings. Given the output schema exists, return details are acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%. The description only explains module_hint and section_context, leaving the purpose of options, strict_mode, image_present, and include_scaffold_summary unclear. This fails to compensate for the lack of schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it composes a structured analysis prompt from question and route result, and explicitly states what it does not do (solve questions, compute answers, or select options). However, it does not differentiate from the sibling 'compose_xingce_answer_prompt' or other scaffold tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions support for module_hint and section_context to guide routing, but does not provide explicit guidance on when to use this tool versus alternatives like scaffold tools or solve tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compose_xingce_answer_promptB
Compose a conservative answer prompt for LLM-in-the-loop answering. Supports module_hint / section_context to guide routing by exam section context. Returns answer_prompt with strict constraints, output schema, and safety contract. Does not answer questions, call external LLM, or select options.
| Name | Required | Description | Default |
|---|---|---|---|
| options | No | ||
| module_hint | No | ||
| strict_mode | No | ||
| allow_answer | No | ||
| image_present | No | ||
| material_text | No | ||
| question_text | Yes | ||
| table_present | No | ||
| section_context | No | ||
| material_present | No | ||
| visual_description | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It transparently states the tool does not answer questions, call external LLMs, or select options. It also mentions the output includes an answer_prompt with constraints, output schema, and safety contract. However, it does not disclose whether the tool has side effects or is read-only, nor mention any authorization or rate limiting.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise at three sentences. Each sentence adds value: first states purpose, second lists supported features, third clarifies limitations and output. No unnecessary words or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of 11 parameters and no annotations, the description is incomplete. It fails to explain most parameters, provide usage context, or describe the output schema (though it exists). For a tool with such complexity, the description should cover more ground.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It only mentions two parameters (module_hint and section_context) as supporting routing, but ignores the other 9 parameters (e.g., options, strict_mode, allow_answer, image_present, material_text, question_text, table_present, material_present, visual_description). This provides almost no added meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it composes a conservative answer prompt for LLM-in-the-loop answering and explicitly notes what it does not do (does not answer, call external LLM, select options). It mentions supporting module_hint/section_context. However, it does not explicitly distinguish itself from the sibling tool compose_xingce_analysis_prompt, which could lead to confusion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 its siblings (e.g., compose_xingce_analysis_prompt, classify_question). It does not state prerequisites, when to prefer this tool, or when not to use it. The only hint is that it supports routing by exam section context, but this is vague.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_analogy_reasoning_scaffoldA
Return the read-only method scaffold for analogy reasoning. This tool provides relation-type checklists, relation verification steps, option comparison guidance, and uncertainty policy. It does not solve questions or select an answer.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Describes the tool as read-only and lists its output contents, which provides transparency about its non-destructive nature. However, without annotations, additional behavioral details such as idempotency, rate limits, or authentication requirements are absent. The description is adequate but could be more explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences concisely convey the tool's purpose, output contents, and limitations. No extraneous information. Front-loaded with the core function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters and an existing output schema, the description fully covers the tool's behavior and output. It specifies what is returned and what is not done, making it complete for context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so schema coverage is effectively 100%. The description adds value by detailing the scaffold's components (checklists, steps, comparison guidance, uncertainty policy), which clarifies the nature of the returned content beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it returns a 'read-only method scaffold for analogy reasoning' and lists specific components it provides. Differentiates from sibling scaffolds by naming the reasoning type and explicitly stating it does not solve questions or select answers, which separates it from other reasoning tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when not to use it ('does not solve questions or select an answer'), implying it is for scaffolding guidance only. While it does not name specific alternatives, the sibling tools list provides context for other reasoning scaffolds, guiding selection based on reasoning domain.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_definition_judgement_scaffoldA
Return the read-only method scaffold for definition judgement. This tool provides question polarity routing, definition element checklists, option verification template, and uncertainty policy. It does not solve questions or select an answer.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden, and it states read-only behavior and lists contents, ensuring agent knows it is safe and non-destructive. It lacks details about any potential side effects or permissions, but for a read-only scaffold, this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with two sentences, front-loaded with the action verb 'Return', and every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters and presence of an output schema, the description sufficiently explains purpose and components, making it complete for the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and 100% schema coverage, so the baseline is 4. The description adds no parameter-specific information, which is acceptable since none are needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns a read-only method scaffold for definition judgement, lists specific components (polarity routing, checklists, verification template, uncertainty policy), and explicitly distinguishes it from solving tools, making its purpose distinct from siblings like solve_data_analysis.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description indicates when to use (when needing the scaffold) and what it does not do (does not solve or select answers), providing clear context. However, it does not explicitly name alternative tools for solving, though sibling names imply other scaffolds.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_graphic_reasoning_scaffoldA
Return the read-only method scaffold for graphic reasoning. This tool provides visual observation order, visual checklists, response template, and uncertainty policy. It does not inspect images, solve questions, or select an answer.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description takes responsibility. It declares the tool is read-only and lists scaffold components. It also clarifies what the tool does not do. However, it does not describe the output schema or any side effects beyond being read-only.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the core purpose, followed by clarifying details. No extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters and an output schema exists, the description fully covers what is needed: the tool's function, components, and limitations. It is complete for an agent to understand the tool's role.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, so a baseline score of 4 is appropriate. The description does not need to add parameter details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns a read-only method scaffold for graphic reasoning, listing specific components and explicitly stating what it does not do, which distinguishes it from sibling scaffold tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for getting a scaffold for graphic reasoning but does not explicitly provide when-to-use or when-not-to-use guidance compared to alternative scaffolds. The negative list ('does not inspect images...') provides some context but lacks direct usage recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_logic_analysis_scaffoldA
Return the read-only method scaffold for logic analysis reasoning. This tool provides problem-type routing, structure templates, constraint extraction checklist, option verification guidance, and uncertainty policy. It does not solve questions or select an answer.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden and describes the tool as 'read-only', implying no side effects. It lists what the scaffold provides but does not detail behavior like rate limits or dependencies. However, it is sufficiently transparent about its purpose and limitations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two sentences, no superfluous words. The main purpose is front-loaded, and every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters and a provided output schema, the description covers the essential aspects: what the tool returns and what it does not do. It could mention that the scaffold aids in generating reasoning steps, but overall it is complete enough for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has no parameters, so the description trivially adds value beyond schema. Schema description coverage is 100% since no parameters exist, and baseline is 4-5.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns a read-only method scaffold for logic analysis reasoning, listing specific components like problem-type routing and structure templates. It explicitly distinguishes itself by stating what it does not do (solve or select answers), and the purpose aligns with its sibling scaffold tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when needing the scaffold for logic analysis reasoning, and clarifies its limitations by stating it does not solve questions or select answers. Although it doesn't explicitly mention when not to use or alternatives, the context is clear enough for an AI agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_method_cardC
Return a full method card by method_id.
| Name | Required | Description | Default |
|---|---|---|---|
| method_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No behavioral traits are disclosed beyond the bare operation. There are no annotations, and the description does not mention any side effects, permissions, rate limits, or the nature of a 'full method card'.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with no extraneous words. However, it could be restructured slightly to include additional context without losing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the description is not required to detail return values, but it omits any context about what a method card is or how it relates to other tools in the set.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description should explain the parameter 'method_id'. It only mentions it in passing ('by method_id') without defining what constitutes a valid ID or how to obtain one.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Return'), the resource ('full method card'), and the specific identifier ('by method_id'). This makes the purpose unambiguous and distinguishes it from sibling tools like 'search_methods' which returns a list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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, such as 'search_methods' or 'get_source_reference'. It neither specifies prerequisites nor indicates 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.
get_quantity_relation_scaffoldA
Return the read-only method scaffold for quantity relation reasoning. This tool provides problem-type routing, quantity extraction guidance, unit normalization checks, method checklists, option verification guidance, and uncertainty policy. It does not solve questions, compute final answers, or select an option.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description states the tool is read-only and does not solve questions or compute answers, providing good behavioral boundaries despite the absence of annotations. No side effects or auth details are needed for a scaffold.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary action, and every sentence adds value. No waste or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters and an output schema present, the description fully covers what the tool does and does not do. It is complete for its purpose.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so baseline 4 applies. The description adds no parameter info, which is appropriate since schema coverage is 100% and no params need documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description specifies the tool returns a 'read-only method scaffold' for 'quantity relation reasoning' and lists components (problem-type routing, extraction guidance, etc.), clearly distinguishing it from sibling scaffold tools for other reasoning types.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for quantity relation reasoning but does not explicitly state when to use vs. alternatives or provide exclusion criteria. Minimal guidance beyond the name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_source_referenceB
Return source files, pages, confidence, and review flag for a method.
| Name | Required | Description | Default |
|---|---|---|---|
| method_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full responsibility for behavioral disclosure. It indicates a read operation (returning data) but omits details such as authorization requirements, side effects, rate limits, or error conditions. This minimal transparency is insufficient for a tool with no annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with no wasted words. It is well front-loaded with the key information. For a simple tool, this is ideal conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter) and the presence of an output schema (which likely details return structure), the description is mostly complete. It clearly states what is returned. However, it lacks any mention of pagination, error handling, or limitations, but these are less critical with an output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must add meaning. The only parameter, method_id, is implied to identify a method, but no format, constraints, or default behavior are specified. The description adds little beyond what the parameter name already conveys.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns source files, pages, confidence, and review flag for a method. It uses a specific verb ('return') and resource ('source reference'), making the purpose clear. However, it does not differentiate itself from similar sibling tools like 'get_method_card' or 'search_methods', missing an opportunity for deeper clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description does not mention any context, prerequisites, or exclusions, leaving the agent without direction on appropriate usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_verbal_reasoning_scaffoldA
Return the read-only method scaffold for verbal reasoning. This tool provides question-type routing, discourse-structure analysis guidance, cloze-context checks, sentence-expression checks, option verification guidance, and uncertainty policy. It does not solve questions, compute final answers, or select an option.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully carries the burden. It explicitly states the tool is read-only and does not solve questions or compute answers, which clearly discloses its behavioral boundaries.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the main purpose, and every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple (zero parameters, no annotations, but has output schema). The description covers what the tool does and what it does not do, which is complete for its intended use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0 parameters, so schema coverage is 100%. No parameter description is needed, and the tool's description adds no param info but is not required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns a 'read-only method scaffold for verbal reasoning' and lists specific features it provides (question-type routing, discourse-structure analysis guidance, etc.), distinguishing it from sibling scaffolds for other reasoning types.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Although no explicit when-to-use or when-not-to-use guidance is given, the domain-specific name and the list of features imply usage for verbal reasoning tasks. The exclusion statement ('does not solve questions') helps set expectations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
route_xingce_questionA
Route a question to the recommended module or scaffold without solving. Supports module_hint / section_context to guide routing by exam section context. Returns module guess, confidence, recommended tool/track, and reasoning signals. Does not answer questions or select options.
| Name | Required | Description | Default |
|---|---|---|---|
| options | No | ||
| module_hint | No | ||
| strict_mode | No | ||
| image_present | No | ||
| question_text | Yes | ||
| section_context | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite no annotations, the description discloses key behaviors: it routes without solving, returns module guess, confidence, recommended tool/track, and reasoning signals. It also clarifies it does not answer questions or select options. No mention of idempotency or auth, but sufficient for a routing tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the primary purpose and consists of three concise sentences with no wasted words. Every sentence adds value (purpose, supported parameters, what it returns, what it does not do).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers main purpose and behavior well, and with an output schema present, return values are documented elsewhere. However, it lacks parameter explanations for 4 of 6 parameters and does not provide explicit comparison with sibling tools beyond the 'without solving' distinction.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate. It only explains module_hint and section_context for guiding routing, covering 2 of 6 parameters. Options, strict_mode, and image_present are not mentioned, leaving significant gaps.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool routes a question to a recommended module or scaffold without solving. It uses specific verb 'route' and resource 'module or scaffold', and distinguishes itself from siblings like solve_data_analysis and solve_logic_reasoning by explicitly stating it does not solve.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clarifies what the tool does and does not do (does not answer or select options), and mentions supported parameters for guiding routing. However, it does not explicitly mention when to use this tool versus alternatives like classify_question, though the distinction from solving tools is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_methodsC
Search method cards in the Xingce knowledge base.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| top_k | No | ||
| module | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It only says 'search' but does not mention any side effects, permissions, rate limits, or output characteristics.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, which is concise but lacks structure and front-loading of key information. It is under-specified for the complexity of the tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of sibling tools and an output schema, the description does not provide enough context. It fails to explain what a 'method card' is or how search results are returned.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the tool description adds no meaning to the parameters. Users get no insight into how 'query', 'top_k', or 'module' affect the search.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (search) and the resource (method cards in Xingce knowledge base). It distinguishes from sibling tools like 'get_method_card' which suggests retrieval of a specific card.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives. The description only states what it does, without context on scenarios or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
solve_data_analysisC
Build a structured data-analysis solving draft, not a final answer.
| Name | Required | Description | Default |
|---|---|---|---|
| options | No | ||
| question_text | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility. It discloses that the tool produces a draft, not a final answer, which is helpful. However, it omits other behavioral traits such as side effects, authentication needs, or whether it is read-only. The single sentence leaves significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise (one sentence) and front-loaded. However, it is overly terse and lacks sufficient detail to be helpful. While not verbose, it sacrifices substance for brevity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema that might specify return values, the description fails to mention it or provide context. The tool's complexity (data analysis solving draft) and lack of parameter documentation mean the description is incomplete for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, and the description adds no information about the parameters 'options' or 'question_text'. The agent receives no guidance on what these parameters mean or how to construct them.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states it builds a structured draft for data analysis solving, distinguishing it from a final answer. However, given sibling tools like 'solve_logic_reasoning' and 'compose_xingce_analysis_prompt', the purpose is not fully differentiated; the verb 'build' and 'draft' are somewhat specific but vague.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 vs alternatives. No prerequisites, context, or exclusions are mentioned, leaving the agent without direction among many sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
solve_logic_reasoningC
Build a structured logic-reasoning solving draft, not a final answer.
| Name | Required | Description | Default |
|---|---|---|---|
| options | No | ||
| question_text | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must carry the full burden. It only indicates the output is a draft, not final. Missing details on side effects, required permissions, rate limits, or output structure. The behavioral disclosure is minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, which is concise but sacrifices informativeness. It could include key details without being verbose. The structure is adequate but not optimized for quick scanning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of logic reasoning and the presence of an output schema, the description is too brief. It does not explain what a 'solving draft' entails, how it relates to other tools, or what the output contains. The description is incomplete for reliable tool use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the tool description does not explain any parameters. The meaning of 'question_text' and 'options' is left entirely to the schema, which has no descriptions. This makes it hard for an agent to provide correct input.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: building a structured logic-reasoning solving draft, and explicitly contrasts it with a final answer. However, it does not distinguish from sibling tools like get_logic_analysis_scaffold, which could cause confusion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives (e.g., get_logic_analysis_scaffold). The description lacks context for selection and does not mention prerequisites or limitations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
15 tool updates
v0.5.1- First observed
classify_question - First observed
compose_xingce_analysis_prompt - First observed
compose_xingce_answer_prompt - First observed
get_analogy_reasoning_scaffold - First observed
get_definition_judgement_scaffold - First observed
get_graphic_reasoning_scaffold - First observed
get_logic_analysis_scaffold - First observed
get_method_card - First observed
get_quantity_relation_scaffold - First observed
get_source_reference - First observed
get_verbal_reasoning_scaffold - First observed
route_xingce_question - First observed
search_methods - First observed
solve_data_analysis - First observed
solve_logic_reasoning
TDQS
Scored across 15 tools
Most tools have distinct purposes, but classify_question and route_xingce_question overlap slightly in routing, and compose_xingce_analysis_prompt vs compose_xingce_answer_prompt could confuse agents without careful reading. Overall, descriptions help disambiguate.
All tool names follow a consistent verb_noun snake_case pattern (e.g., classify_question, get_analogy_reasoning_scaffold, solve_data_analysis). No mixed conventions.
With 15 tools, the set is well-scoped for the domain of question routing, scaffolding, and solving. Each tool serves a clear purpose, and the count is within the 3-15 ideal range.
The set covers routing, prompt composition, and scaffolds for six reasoning types, but only two solve draft tools (data analysis and logic reasoning) exist. Missing solve tools for analogy, definition, graphic, etc., leaving agents to work around these gaps.
Maintenance
Related MCP Connectors
Reasoning, code, anti-deception, memory harness MCP tools. Stdio or HTTPS api.ejentum.com/mcp
Hybrid human + AI expertise for faster, trusted answers and decisions via MCP Server.
MCP server giving AI agents one-connection access to China A-share market intelligence: financials,
Related MCP Servers
- AlicenseAqualityAmaintenanceThis server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.5950MIT
- AlicenseAqualityDmaintenanceA MCP server that implements sequential thinking protocols, provides structured problem-solving methods, decomposes complex problems into manageable steps, and supports iterative optimization and alternative reasoning paths.12Apache 2.0
- AlicenseAqualityDmaintenanceA structured problem-solving MCP server that breaks down complex tasks into sequential steps, supports iterative refinement and branching, and helps maintain context and explore alternative reasoning paths.14142MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for step-by-step mathematical reasoning and planning, enabling AI agents to execute calculations and perform GUI actions like opening PowerPoint.1Apache 2.0