get_statistical_reporting_check_prompt
Check statistical results text for completeness and consistency. Verify effect size, confidence intervals, p-value format, sample sizes, and statistical tests.
Instructions
[PRO] Review results text for consistent, complete statistical reporting. Checks: effect size, 95% CI, p-value format, N per group, statistical test. DATA SAFETY: Only input published or approved statistical results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| results_text | Yes | ||
| journal_or_style | No | AMA |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Implementation Reference
- server.py:814-835 (handler)The @mcp.tool() decorated function that implements the 'get_statistical_reporting_check_prompt' tool logic. It accepts 'results_text' and optional 'journal_or_style' (default 'AMA') and returns a prompt string instructing review of statistical reporting consistency.
@mcp.tool() def get_statistical_reporting_check_prompt(results_text: str, journal_or_style: str = "AMA") -> str: """ [PRO] Review results text for consistent, complete statistical reporting. Checks: effect size, 95% CI, p-value format, N per group, statistical test. DATA SAFETY: Only input published or approved statistical results. """ return f"""Review the following results text and ensure statistical values are reported consistently per {journal_or_style} style. For each result, confirm: - Effect size or difference - 95% confidence interval - P-value (formatted per {journal_or_style} style) - N for each group - Statistical test used (if not already in Methods) {results_text} Flag missing elements and suggest where they should be inserted. 🔒 DATA SAFETY: Only input statistical results from published papers or data approved for disclosure.""" - server.py:1000-1000 (registration)The tool is listed in a directory of pro-tier tools, with description 'Verify consistent statistical reporting'. This entry is used by the 'get_tool_directory' function (which generates a listing of all available tools).
("get_statistical_reporting_check_prompt", "Verify consistent statistical reporting"),