Abstract
Background
Large language models (LLMs) have advanced rapidly. However, concerns remain regarding their reliability in clinical settings due to the inherent issues of hallucinations and inadequate referencing.
Materials and Methods
We evaluated six current LLMs: GPT-4.1 (GPT), o3, Gemini-2.5-Pro-Preview-0506 (Gemini), Grok-3 (Grok), Qwen3-235B-A22B (Qwen3), and Claude Sonnet 4 (Claude), as well as two technologies that extend LLM capabilities using external knowledge bases: retrieval-augmented generation (RAG) and Model Context Protocol (MCP). Each model was evaluated using 50 questions selected from a 132-question pool developed based on the Chinese Medical Association guideline for clinical diagnosis and treatment of lung cancer (2024 Edition). Three models—Qwen, GPT, and Grok—were further analyzed to assess performance changes with RAG and MCP integration. All responses were independently reviewed by two qualitative evaluators.
Results
Overall, o3 achieved the highest accuracy (50%), followed by GPT (48%) and Gemini (48%), then Grok (44%), Qwen (40%), and Claude (36%). However, implementing RAG (LLM-RAG) or MCP (LLM-MCP) significantly improved accuracy, with statistical differences observed between baseline LLMs and their RAG- or MCP-enhanced counterparts. Lexical richness and semantic noise both diminished, whereas the semantic clarity and accuracy of verbs, noun-verb combinations, and content words improved.
Conclusions
The six latest LLMs performed similarly on lung cancer-related questions. The integration of RAG or MCP significantly enhanced accuracy while simplifying sentence structure, focusing more on the main topics, and using more accurate vocabulary.
Keywords
Introduction
Lung cancer is one of the most commonly diagnosed cancers and the leading cause of cancer-related deaths worldwide. About 80% of all cases are linked to smoking, while other risk factors include secondhand smoke, radon, coal combustion, occupational carcinogens, and air pollution. 1 According to the Cancer Statistics, 2025 report, there will be approximately 226,650 new cases of lung cancer in the USA in 2025. 2 Lung cancer causes nearly 2.5 times more deaths than second-ranking colorectal cancer. Moreover, prognosis is closely tied to the stage at diagnosis, with 5-year survival rates ranging from 98% for stage IA to under 5% for stage IV.3,4 These statistics underscore the urgent need for new strategies to improve early detection and survival outcomes for lung cancer. 5 Patients often encounter challenges in acquiring adequate medical information to gain a comprehensive understanding of their health conditions.
Recent advances in artificial intelligence (AI) offer promising tools to address this challenge. In healthcare, AI has demonstrated potential in enhancing diagnostic precision and cancer staging.6–8 The rise of consumer-facing large language models (LLMs) has also allowed patients to access medical information through conversational platforms—a trend that continues to expand. 9 Trained on massive datasets, LLMs can generate contextually relevant responses to prompts involving text, images, or multimedia. 10 However, they often process data from mixed-quality sources, sometimes producing inaccurate or outdated responses. 11 This issue, known as “LLM hallucination,” can generate plausible but incorrect information, raising concerns about its reliability in clinical use.12,13
To improve accuracy, technologies such as retrieval-augmented generation (RAG) and Model Context Protocol (MCP) have been developed. RAG strengthens LLMs by incorporating external knowledge bases (EKBs) through embedding models. This involves converting clinical guidelines into vector formats and integrating them into the model's retrieval process.14,15 RAG has been successfully used in specialties like general surgery and urology.16,17 MCP enables AI agents to select tools based on context and supports human-in-the-loop workflows, allowing users to inject data or authorize decisions. 18 It facilitates EKB integration, improving response reliability, and has recently shown promise across multiple domains.19,20 Despite their potential, RAG and MCP remain in early stages of adoption, and their effectiveness is not yet well established.18,21 Prior studies assessing LLM accuracy often involved earlier models without current multimodal capabilities.22,23 Additionally, few studies have evaluated LLM performance in non-English languages such as Chinese—the most widely spoken language globally.24,25
To explore the potential of the latest AI models and technologies in addressing lung cancer-related questions in the Chinese context, we evaluated the performance of six leading LLMs in addressing questions on lung cancer screening, diagnosis, treatment, and follow-up, based on the Chinese Medical Association guideline for clinical diagnosis and treatment of lung cancer (2024 Edition), within a Chinese-language context. 26 We also examined how the application of RAG and MCP influenced model performance.
Materials and methods
Question and LLM preparation
The Chinese Medical Association guideline for clinical diagnosis and lung cancer treatment (2024 Edition) provides medical staff at all levels, including clinicians, imaging specialists, and laboratory technicians, with comprehensive and reasonable recommendations about lung cancer. From an initial pool of 132 questions derived from this guideline, we selected 50 questions based on their commonality and coverage to ensure a comprehensive representation of the guideline's pivotal content for in-depth analysis (Supplementary Material A). These clinically relevant questions cover four domains: screening (14, 28%), diagnosis (12, 24%), treatment (16, 32%), and follow-up (8, 16%). As of May 22, 2025, the following six LLMs, which belong to the leading publicly available LLMs, were evaluated: OpenAI's GPT-4.1 (GPT; released on April 14, 2025) 27 ; OpenAI's o3 (released on April 16, 2025) 28 ; Anthropic's Claude Sonnet 4 (Claude; released on May 22, 2025) 29 ; xAI's Grok-3 (Grok; released on February 19, 2025) 30 ; Google's Gemini-2.5-Pro-Preview-0506 (Gemini; released on May 6, 2025) 31 ; Qwen's Qwen3-235B-A22B (Qwen; released on April 29, 2025), 32 we obtained the results by using the above names through the official website APIs. LLMs with RAG (LLMs-RAG) and LLMs with MCP (LLM-MCP) were also examined, including Qwen-RAG, GPT-RAG, Grok-RAG, Qwen-MCP, GPT-MCP, and Grok-MCP.
RAG and MCP workflows
We used the application programming interfaces (APIs) of various LLMs in combination with the local RAG and MCP systems to complete the task (Figure 1). In the RAG system, we break down the textual guideline, setting the chunk size to 3000 characters and creating a 200-character overlap between adjacent chunks. We chose this length because when setting the 2000-character chunk size, we found that the absence of answer content led to a very low accuracy rate. Given that modern LLMs are capable of processing longer input sequences, we opted to increase the chunk length to better preserve contextual integrity. The text was then encoded into vectors using BAAI's bge-m3. Considering a user's input, the same encoding model was then used to convert the query into a vector. The similarity between the question embedding and the embedding of the document chunks in the vector store was then calculated. The most relevant document chunks were selected as the augmented context information for the current question. The provided question and associated documents were then merged into a new prompt. The LLM was then tasked with answering questions based on the provided information. In the MCP system, the “filesystem” was used as the MCP server for LLMs to obtain EKB. It is a Node.js server implementing MCP for file system operations, such as searching, reading, and editing files. The host is a user-facing AI application that orchestrates LLM interactions and enforces access controls. It uses an LLM to interpret user requests and initiate tool calls via an MCP client. The server provides access to external files. The client launches the server as a subprocess and exchanges JSON-RPC messages with it over a stdio transport.33,34 Based on the given question, the LLM, referencing the tool definitions provided by the server, first generates a request to invoke the “list_directory” tool to retrieve the list of files. The client initiates the tool invocation request, and the server executes the operations and returns the results. After identifying the relevant file, the LLM similarly generates a call request for “read_file” to access the complete content. The LLM then generates the final answer based on the context and the file content retrieved by the server.

(Left panel) directly asking questions to the LLM; (middle panel) asking questions to the LLM through the RAG system referring to EKB; and (right panel) and asking questions to the LLM through the MCP system with reference to EKB. The RAG system identifies the most relevant text chunks based on the input prompt and submits them together for further processing. While the MCP system orchestrates a closed-loop workflow where the LLM identifies the required data, the framework executes the retrieval, and a second inference pass synthesizes the results into a grounded final response.
Response generation and grading
An independent assessor meticulously entered the questions into the LLMs, maintaining the exact format, wording, and punctuation as presented in the source data during May 10–30, 2025. This approach ensured consistency across all LLMs. Following the input, the same assessor then gathered the responses produced by the LLMs. Each prompt was entered into a new conversation using a fresh chat window, and the previous conversations were cleared to avoid bias from the LLMs remembering past interactions. To minimize inaccuracies resulting from prompts, we used the same instruction: “As a thoracic surgeon in a top-tier hospital in China, you will answer patients’ questions regarding lung cancer with meticulousness and comprehensiveness.” When we access EKB through MCP or RAG, the instruction we followed was: As a thoracic surgeon in a top-tier hospital in China, you will answer patients’ questions regarding lung cancer with meticulousness and comprehensiveness based on the Chinese Medical Association guideline for clinical diagnosis and lung cancer treatment. Do not add your own content.
To balance representativeness and efficiency, we selected 50 domain-stratified, commonly encountered clinical questions from 132, prior to viewing any model results. Two researchers independently evaluated the full dataset using a randomized, blinded evaluation protocol. They assessed accuracy based on NCCN guideline and Chinese Medical Association guideline, categorizing the responses as correct or incorrect while blinded to the model sources. 35 We employed a rigorous rubric that focused solely on accuracy, disregarding the influence of language style. Reviewers were instructed to identify verbose yet inaccurate responses. Only those answers that provide complete information in accordance with the reference guidelines were considered correct; those that did not provide the correct answer at all will be regarded as incorrect; otherwise, they were judged partially correct (Supplementary Material A). Due to the rigor of clinical issues, during our analysis process, we regarded partially correct results as incorrect. A Cohen's kappa value of 0.68 suggests substantial inter-rater agreement, beyond what would be expected by chance. 36 Any disputes at the review phase were resolved through consensus.
Readability assessment
Text readability was assessed using the Alpha Readability Chinese (ARC) analysis tool. 37 The evaluation covered multiple subcategories, including lexical and syntactic richness, noun and verb semantic accuracy, content word semantic accuracy, as well as semantic richness, clarity, and noise. The higher the score of lexical and syntactic richness, the more varied the vocabulary and sentence structure are, and for patients, the comprehensibility becomes worse. Higher semantic accuracy values for verbs, nouns, noun-verb combinations, and content words indicate more precise word usage, which in turn helps patients obtain information more accurately. Semantic richness refers to the abundance of the topic, semantic clarity refers to the concentration of the topic, and semantic noise represents the degree to which the text topic leans towards unimportant topics or deviates from important topics. The lower the values of semantic richness and semantic noise, and the higher the value of semantic clarity, the more tightly the content focuses on the main topic, thereby enhancing readability and clinical communication. These indicators are essential for measuring comprehensibility and gauging the difficulty of both human- and AI-generated responses. To establish a benchmark, 20 texts were selected from the 10th edition of Surgery published by People's Medical Publishing House. ARC evaluation of these texts provided a standard reference for undergraduate reading levels.
Statistical analysis
All data analyses were conducted using SPSS software (version 27.0.1; IBM, Armonk, NY, USA). Percentages of correct answers were calculated for each LLM, LLM-RAG, and LLM-MCP across the four sections. To test for significant differences in accuracy across models, chi-square tests were applied. For paired data, McNemar tests were used. When chi-square assumptions were violated (i.e., expected count <5 in >20% of cases or any expected count <1), comparisons between categorical variables were performed using two-sided generalized Fisher's exact tests. For continuous paired data (e.g., response length, reading ease), paired t-tests were applied when data were normally distributed; otherwise, the Wilcoxon signed-rank test was used. For continuous unpaired data, independent samples t-tests were performed when data were normally distributed and variances were homogeneous; otherwise, the Mann–Whitney U-test was used.To compare multiple groups, analysis of variance (ANOVA) or the Kruskal–Wallis test was conducted, including for readability scores derived from LLMs. For post-hoc multiple comparisons, either the Bonferroni correction or the Games–Howell method was employed.
Results
The latest LLMs displayed similar accuracy on lung cancer-related questions
Among the 50 questions, the accuracy rates of the six latest LLMs (as of May 30, 2025) did not differ significantly. Of these, o3 achieved the highest accuracy (50.0%), while Claude recorded the lowest (36.0%) (Figure 2). Across the four domains, the six base LLMs showed no statistically significant variation in accuracy. o3 achieved the highest accuracy (66.7%) in the diagnosis section. In the follow-up section specifically, the models showed the lowest baseline performance (12.5%).

The accuracy of responses from LLMs and RAG/MCP variants in lung cancer screening, diagnosis, treatment, follow-up, and overall data.
Statistical differences observed between LLM and LLM-RAG, as well as between LLM and LLM-MCP
In aggregate, overall accuracy improved substantially after integrating RAG and MCP. Among the models enhanced with RAG or MCP, Grok-RAG, GPT-MCP, and Grok-MCP performed best, each reaching an accuracy of 96.0% (Table 1). GPT-RAG followed with 94%, while Qwen-MCP and Qwen-RAG ranked lowest among enhanced models at 84%. Grok-RAG and Grok-MCP also demonstrated the greatest improvement, with a 52% increase in accuracy over their base versions. Post-hoc analysis further showed no significant accuracy differences among the six enhanced variants when RAG or MCP was applied individually, a trend consistent across all four subcategories. However, statistical differences were observed between baseline LLMs and their RAG- or MCP-enhanced counterparts.
Comparison of LLMs and their RAG/MCP variants on 50 questions, n (%).
Note. Results are presented as frequency%. *P < .05 was deemed significant.
Across the four domains, after enhancement, Grok-RAG and GPT-MCP answered all eight follow-up questions correctly, reflecting the largest improvement in accuracy. Notably, both variants also answered all questions correctly in three of the four subcategories (Figure 2). Although most enhanced models exhibited statistically significant gains, some exceptions were noted. In the screening category, no significant differences were found between Qwen and Qwen-RAG, Qwen and Qwen-MCP, GPT and GPT-RAG, or Grok and Grok-RAG. Similarly, within the treatment section, comparisons between Qwen and its RAG and MCP variants and between GPT and GPT-MCP also failed to reach statistical significance.
There were statistically significant differences in response length
According to the Kruskal–Wallis test, the six LLMs differed significantly in word count and clustered into three gradients. Gemini produced the longest responses, followed by Qwen, Grok, and o3. GPT and Claude generated the shortest outputs. After applying RAG or MCP, most models showed a clear reduction in word count; however, the GPT group diverged from this trend, with GPT-MCP generating noticeably longer responses (Supplementary Material B).
Readability assessment
Our assessment of Chinese readability covers nine indicators across three dimensions. We compared the readability of GPT's responses with that of the undergraduate references. The results indicated that the readability of GPT was better than the undergraduate reading level in Chinese (Table 2). Other LLMs’ readability is at this level or even higher (Supplementary Material C). After applying these two techniques, the scores of Qwen's variants in terms of lexical richness and semantic noise both decreased (Tables 3 and 4). This indicates that the base model has more variable lexical and deviation from the main topic, thus has poorer readability. Second, from the perspective of semantic accuracy indicators, the semantic accuracy values of verbs, noun-verb combinations, and content words in the responses of Qwen-RAG and Qwen-MCP are significantly lower than those of Qwen. In other words, Qwen-RAG and Qwen-MCP use more difficult words, and the words they use are more semantically precise from a semantic perspective. From the perspectives of semantic clarity indicators, similar findings were also observed. Specifically, the semantic clarity value of Qwen-RAG's and Qwen-MCP's responses was higher than that of Qwen's. This indicates that the topic distribution probability of Qwen-RAG and Qwen-MCP's responses deviated more to the right from the normal distribution, and the topics were more concentrated, with clearer semantics. In terms of semantic noise, Qwen-RAG and Qwen-MCP scored lower than Qwen; this value indicates that Qwen may cover a wider range of topics or concepts, albeit at the cost of clarity. By contrast, GPT-MCP and GPT-RAG increased accuracy but produced longer outputs that were rated as more difficult to read across five indicators, although the changes were minor. Overall, the GPT series showed relatively stable variation. When comparing LLM-RAG with LLM-MCP, there is no difference between the two variants of Qwen, while GPT only shows differences in semantic noise and syntactic richness. However, Grok demonstrates differences across seven indicators (Supplementary Material D).
Comparison of the readability of GPT's answers and undergraduate Chinese standard reference.
*The larger the index value, the greater the text difficulty, and the harder it is to read.
**The larger the index value, the smaller the text difficulty, and the easier it is to read.
***P < .05 was deemed significant.
Independent samples t-test.
Mann–Whitney U-test.
Comparison of the Readability of Qwen’s Answers and Qwen-RAG’s Answers
*The larger the index value, the greater the text difficulty, and the harder it is to read.
**The larger the index value, the smaller the text difficulty, and the easier it is to read.
***P < 0.05 was deemed significant.
Paired t-test.
Wilcoxon signed-rank test.
Comparison of the Readability of Qwen’s Answers and Qwen-MCP’s Answers
The larger the index value, the greater the text difficulty, and the harder it is to read.
The larger the index value, the smaller the text difficulty, and the easier it is to read.
P < 0.05 was deemed significant.
Paired t-test.
Wilcoxon signed-rank test.
Discussion
Generative AI chatbots have emerged as a transformative technology and continue to evolve rapidly. Past studies have demonstrated the effectiveness of generative AI chatbots in delivering high-quality health information,22,38 and we focused on the capabilities of the latest LLMs and the related technologies. This study extends previous work in several important ways. First, earlier research primarily evaluated models such as ChatGPT and Google Bard.22,39 The present study includes a broader range of both leading proprietary and open-source LLMs. Second, we examined the impact of recent technologies, specifically, the integration of RAG and MCP, to enable LLMs to reference EKBs when answering lung cancer-related questions.
Our findings indicate that the six latest LLMs as of May 30, 2025, including the open-source Qwen, demonstrated similar accuracy across questions from the same domain. Global LLMs are predominantly trained on English corpora, which limits their vocabulary coverage for Chinese characters. This leads to inefficient tokenization, where complex medical terms are often fragmented into meaningless characters. Furthermore, the lack of pre-training on Chinese clinical texts restricts their ability to interpret cultural-specific medical terminology. This linguistic misalignment is likely a significant factor contributing to their lower baseline performance.40,41 In the follow-up category, however, only 12.5% of responses were correct, which was different from the results of the previous study. 42 Although the models’ training cutoffs spanned the publication dates of the referenced guidelines, no major performance differences emerged across clinical domains. This may be attributed to the paywalled nature of the EKB content, which likely prevented access during model pretraining. However, in the screening domain, the LLMs demonstrate a higher question-answering accuracy compared to other domains. The marginal benefit conferred by the EKB enhancement measures is relatively limited, potentially attributable to the widespread availability of information in this area, which has already been extensively incorporated into the models’ pre-training data.
As noted in the results, no significant differences were detected between the RAG- or MCP-enhanced counterparts. For consistency, we used Qwen in the non-thinking mode throughout the study, as applying its thinking mode could improve the outcomes. 32 As an open-source LLM, Qwen offers the advantage of being deployable offline or locally, making it compatible with RAG and MCP for enhanced accuracy while ensuring data confidentiality. Both RAG and MCP enabled models to access EKBs and generate comparable outputs. However, MCP required complete file uploads, resulting in higher resource demands and latency. RAG necessitated careful preparation, including an embedding model, a retrieval system, and a well-processed EKB to deliver precise, contextually relevant responses. 14 Therefore, the choice between the two should depend on the specific operational context.
In line with past studies,17,20 nearly all LLM-RAG and LLM-MCP variants in our research significantly outperformed their baseline counterparts across the 50 questions. Among them, three models made only two errors each. For incorrect Chinese names of drugs such as “Durvalumab,” after referring to EKB, all were answered correctly. These findings underscore that, without referencing materials containing the correct answers, the models exhibited strong hallucinations. Notably, these hallucinations disappeared once standard, accurate content was provided. This observation highlights the importance of supplying high-quality reference material, which enables LLMs to access and apply the most current and trustworthy domain-specific information.14,43 A deeper review of the incorrectly answered questions from these six and other variants revealed two main patterns: in most cases the results failed to present the full correct answer, and in one case the Grok-MCP response deviated from the expected direction; both problems stemmed from incomplete citations (Table 5). In addition, GPT always provides citation annotations. However, for Qwen and Grok, the citation markers sometimes are absent in the generated content, which can create the illusion that there is no reference to EKB. Future studies should also focus on optimizing ensemble approaches to enhance the retrieval precision and improve the citation annotation quality of RAG and MCP frameworks.
Sample questions and answers.
In terms of readability, Gemini achieved the highest lexical richness and semantic noise score, whereas o3 displayed the weakest semantic clarity but excelled in verb accuracy, noun–verb combinations, and content word selection. Both LLM-RAG and LLM-MCP not only improved accuracy but also optimized responses. Their lower lexical and syntactic richness reflected a more focused linguistic style, with reduced semantic noise that enhanced coherence and clarity, thereby aiding comprehension. They also demonstrated higher verb accuracy, content word accuracy, and combined noun–verb semantic accuracy, producing responses that were more specific and contextually appropriate—critical for delivering accurate information, though potentially at the cost of readability. The loss of readability caused by providing accurate information is inevitable. Meanwhile, the concentration and clarity of the topic, as well as the simplicity of the vocabulary and sentence structure, have significantly contributed to enhancing patient readability of the content. However, both GPT-MCP and GPT-RAG have an overall trend of becoming more difficult to read. The average word counts also increased for both variants, with GPT-MCP demonstrating a statistically significant difference. This pattern does not appear to be associated with answer accuracy. For instance, in response to the question “What are the non-surgical treatment options for SCLC?,” GPT-MCP generated a wrong but longer answer. This phenomenon may be attributed to the inclusion of additional relevant information in the responses following the provision of a more comprehensive context, which is also what distinguishes GPT from the other two models. The comparison between LLM-RAG and LLM-MCP shows that distinct models produce varying outcomes. No differences were observed between the two variants of Qwen, whereas Grok exhibited discrepancies across nearly all metrics when these two techniques were applied. This suggests that Qwen is insensitive to technical modifications, while Grok displays a dependency on such changes. Prior research suggests AI can simplify text readability. 20 In this study, no specific optimization for readability was carried out. We are confident that performance and readability can be effectively enhanced through the use of prompt engineering, fine-tuning, or specialized algorithm optimization.44–46 Whether AI can consistently balance accuracy with accessibility, ensuring both correct answers and broad comprehensibility, remains uncertain and warrants further investigation.
The data used by LLM during pre-training has undergone quality control, and false information and advertisements have been filtered out. However, there is still the problem of inaccurate responses, which is also known as hallucination. This study demonstrated that the application of RAG and MCP significantly enhanced the accuracy of LLM and provided more accurate information. Grok-RAG, GPT-MCP, and Grok-MCP achieved an accuracy of 96.0%. A notable advantage of LLMs equipped with EKB is their ability to provide easy-to-understand and accurate responses to common questions, enabling patients to access instant and reliable medical information. Although no significant ethical issues, such as racial discrimination, hate speech, or inciting harm, were observed in our experiments, enhanced governance remains imperative in clinical practice to avert potential misinterpretation. Since LLMs rely on internet connectivity for operation, the storage of personal sensitive information in memory and its potential exposure through prompts may pose significant risks to individual privacy. Local deployment offers a viable solution by enabling standalone usage without internet dependence, thereby enhancing data security. Open-source LLMs such as Qwen represent a favorable option in this context.
Nevertheless, our study has limitations. First, although the questions spanned various topics, their total number was relatively limited, and each question was posed only once. Despite this, statistically significant distinctions were identified among specific LLM variants. Second, unlike real-world clinical environments, we evaluated LLM accuracy using a set of common lung cancer-related questions. The researchers conducted a blinded evaluation with randomized response orders and strictly adhered to the scoring criteria, ensuring that judgments were unaffected by response length or stylistic variations. However, the questions raised by the patients are more complex and diverse, which might pose a challenge for LLM in extracting useful information and returning it. Despite full access to a comprehensive knowledge repository, the variants exhibit suboptimal exploitation, yielding only partial content synthesis and inadequate citation attribution, which represents a deficiency. To achieve competence in clinical practice, further advancements and empirical investigations in these areas will be essential in the future.
Conclusion
In conclusion, our preliminary findings revealed no statistically significant differences in accuracy among the six LLMs across four domains and 50 questions. However, integrating RAG or MCP markedly improved accuracy, uncovering meaningful distinctions across all questions. Grok-RAG, GPT-MCP, and Grok-MCP achieved accuracy rates as high as 96%. These systems simplified vocabulary and structure, sharpened thematic focus, and improved semantic coherence. Verb usage, including verb–noun collocations and content noun choices, also became more precise, yielding contextually appropriate and semantically specific sentences. The open-source model Qwen showed notable gains with RAG or MCP, though its accuracy remained relatively lower; its local deployability and open-source nature, however, provide important advantages for data privacy. Both RAG and MCP enhanced accuracy comparably and allowed dynamic updating of reference content, highlighting their potential as adaptive, high-precision tools for patient clinical education. Nonetheless, the uneven performance of EKB search in our experiments illustrates the instability of some AI applications in medicine. Thus, rigorous expert evaluation remains essential to ensure AI systems support, rather than burden, patients and medical staff.
Supplemental Material
sj-xlsx-1-dhj-10.1177_20552076261427503 - Supplemental material for Performance of latest AI models, RAG, and MCP on lung cancer-related questions
Supplemental material, sj-xlsx-1-dhj-10.1177_20552076261427503 for Performance of latest AI models, RAG, and MCP on lung cancer-related questions by Xinjie Zhao, Miaomiao Yang, Kang Tian, Hui Jiang, Deyu Guo, Yadong Wang and Jiajun Du in DIGITAL HEALTH
Supplemental Material
sj-docx-2-dhj-10.1177_20552076261427503 - Supplemental material for Performance of latest AI models, RAG, and MCP on lung cancer-related questions
Supplemental material, sj-docx-2-dhj-10.1177_20552076261427503 for Performance of latest AI models, RAG, and MCP on lung cancer-related questions by Xinjie Zhao, Miaomiao Yang, Kang Tian, Hui Jiang, Deyu Guo, Yadong Wang and Jiajun Du in DIGITAL HEALTH
Supplemental Material
sj-xlsx-3-dhj-10.1177_20552076261427503 - Supplemental material for Performance of latest AI models, RAG, and MCP on lung cancer-related questions
Supplemental material, sj-xlsx-3-dhj-10.1177_20552076261427503 for Performance of latest AI models, RAG, and MCP on lung cancer-related questions by Xinjie Zhao, Miaomiao Yang, Kang Tian, Hui Jiang, Deyu Guo, Yadong Wang and Jiajun Du in DIGITAL HEALTH
Supplemental Material
sj-docx-4-dhj-10.1177_20552076261427503 - Supplemental material for Performance of latest AI models, RAG, and MCP on lung cancer-related questions
Supplemental material, sj-docx-4-dhj-10.1177_20552076261427503 for Performance of latest AI models, RAG, and MCP on lung cancer-related questions by Xinjie Zhao, Miaomiao Yang, Kang Tian, Hui Jiang, Deyu Guo, Yadong Wang and Jiajun Du in DIGITAL HEALTH
Supplemental Material
sj-xlsx-5-dhj-10.1177_20552076261427503 - Supplemental material for Performance of latest AI models, RAG, and MCP on lung cancer-related questions
Supplemental material, sj-xlsx-5-dhj-10.1177_20552076261427503 for Performance of latest AI models, RAG, and MCP on lung cancer-related questions by Xinjie Zhao, Miaomiao Yang, Kang Tian, Hui Jiang, Deyu Guo, Yadong Wang and Jiajun Du in DIGITAL HEALTH
Footnotes
Acknowledgments
First and foremost, I would like to extend my sincere gratitude to all those who have supported me in the completion of this manuscript. I am especially indebted to my thesis advisors, Professor Jiajun Du and Professor Guanghui Wang, whose expertise, dedication, and guidance have been invaluable throughout this process. Despite their demanding schedules, they generously devoted their time, energy, and thoughtful insight to the supervision of my work, greatly contributing to the development and refinement of my ideas. I would also like to express my heartfelt appreciation to Dr Yadong Wang for his insightful suggestions on language and his guidance during the revision of this thesis.
Ethical considerations
This study is neither a clinical trial nor a human trial; therefore, an IRB approval is not required. Therefore, the consent statement is not necessary.
Author contributions
Conceptualization (X.Z., M.Y.); data curation (X.Z., M.Y.); formal analysis (H.J., X.Z., M.Y.); investigation (X.Z., M.Y.); methodology (X.Z., M.Y.); resources (X.Z.); visualization (X.Z., K.T., M.Y.); writing‒original draft (X.Z., M.Y.); writing‒review and editing (Y.W., D.G., X.Z., M.Y.); supervision (J.D., Y.W.). All authors accepted the final draft of the manuscript.
Funding
The authors received no financial support for the research, authorship, and/or publication of this article.
Declaration of conflicting interests
The authors declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.
Data availability statement
All data supporting this article are available in the article and in Spplementary Material, and the original data are available from the corresponding author upon reasonable request.
Guarantor
JD.
Supplemental material
Supplemental material for this article is available online.
References
Supplementary Material
Please find the following supplemental material available below.
For Open Access articles published under a Creative Commons License, all supplemental material carries the same license as the article it is associated with.
For non-Open Access articles published, all supplemental material carries a non-exclusive license, and permission requests for re-use of supplemental material or any part of supplemental material shall be sent directly to the copyright owner as specified in the copyright notice associated with the article.
