Skip to content

Commit 62fe799

Browse files
authored
Add Meta-Analysis MCP Server (github#139)
- Professional MCP server for conducting meta-analyses - Supports multiple effect measures (OR, RR, MD, SMD, HR) - Automated statistical validation and R integration - Publication-ready forest plots and reports - Docker image: mmrech/mcp-meta-analysis-r:latest
1 parent 7a7b59e commit 62fe799

1 file changed

Lines changed: 65 additions & 0 deletions

File tree

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: mcp-meta-analysis-r
2+
image: mmrech/mcp-meta-analysis-r:latest
3+
type: server
4+
meta:
5+
category: data-science
6+
tags:
7+
- statistics
8+
- meta-analysis
9+
- research
10+
- healthcare
11+
- r-statistics
12+
- data-science
13+
- clinical-trials
14+
about:
15+
title: Meta-Analysis MCP Server
16+
description: |
17+
A professional MCP server for conducting meta-analyses with automated statistical validation, R integration, and publication-ready outputs.
18+
19+
Features:
20+
• Guided workflow for meta-analysis from data import to report generation
21+
• Support for multiple effect measures (OR, RR, MD, SMD, HR)
22+
• Automated statistical validation and data quality checks
23+
• Forest plots and funnel plots with customizable styles
24+
• Publication bias assessment (Egger's test, Begg's test, trim-and-fill)
25+
• Heterogeneity analysis (I², Q-test, τ²)
26+
• Support for CSV, Excel, and RevMan data formats
27+
• Comprehensive report generation (HTML/PDF/Word)
28+
• Session-based workflow management
29+
• Containerized R environment with meta, metafor packages
30+
31+
Perfect for researchers, clinicians, and data scientists conducting systematic reviews and meta-analyses.
32+
icon: 📊
33+
source:
34+
project: https://github.com/matheus-rech/mcp-meta-analysis-with-r
35+
run:
36+
volumes:
37+
- '{{meta-analysis.sessions_path}}:/app/user_sessions'
38+
- '{{meta-analysis.logs_path}}:/app/logs'
39+
config:
40+
description: Configure paths for session data and logs
41+
env:
42+
- name: NODE_ENV
43+
example: production
44+
value: 'production'
45+
- name: LOG_LEVEL
46+
example: info
47+
value: 'info'
48+
- name: USE_DOCKER
49+
example: 'false'
50+
value: 'true'
51+
description: Use Docker for R execution (set to false if R is installed locally)
52+
parameters:
53+
type: object
54+
properties:
55+
sessions_path:
56+
type: string
57+
description: Directory path where session data will be stored
58+
default: /Users/local-test/meta-analysis-sessions
59+
logs_path:
60+
type: string
61+
description: Directory path where logs will be stored
62+
default: /Users/local-test/meta-analysis-logs
63+
required:
64+
- sessions_path
65+
- logs_path

0 commit comments

Comments
 (0)