diff --git a/README.md b/README.md
index 938d219..726b6ed 100644
--- a/README.md
+++ b/README.md
@@ -799,3 +799,122 @@ Contributions are welcome via Issues or Pull Requests.
## License
This project is licensed under the Apache 2.0 License. See the LICENSE file for details.
+
+## FAQ
+
+### Q: Why do Qwen3-32b and other small parameter models always fail when calling tools?
+
+**A:** This is a common issue. The main reason is that these models need more explicit guidance to correctly use MCP tools. It's recommended to add the following instruction prompt for the model:
+
+```xml
+
+Use MCP tools to complete tasks as much as possible. Carefully read the annotations, method names, and parameter descriptions of each tool. Please follow these steps:
+
+1. Carefully analyze the user's question and match the most appropriate tool from the existing Tools list.
+2. Ensure tool names, method names, and parameters are used exactly as defined in the tool annotations. Do not create tool names or parameters on your own.
+3. When passing parameters, strictly follow the parameter format and requirements specified in the tool annotations.
+4. When calling tools, call them directly as needed, but refer to the following request format for parameters: {"mcp_sse_call_tool": {"tool_name": "$tools_name", "arguments": "{}"}}
+5. When outputting results, do not include any XML tags, return plain text content only.
+
+
+User question: user_query
+
+
+
+
+```
+
+If you have further requirements for the returned results, you can describe the specific requirements in the `