Skip to content

Add Meta-Analysis MCP Server #139

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions servers/mcp-meta-analysis-r/server.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: mcp-meta-analysis-r
image: mmrech/mcp-meta-analysis-r:latest
type: server
meta:
category: data-science
tags:
- statistics
- meta-analysis
- research
- healthcare
- r-statistics
- data-science
- clinical-trials
about:
title: Meta-Analysis MCP Server
description: |
A professional MCP server for conducting meta-analyses with automated statistical validation, R integration, and publication-ready outputs.

Features:
• Guided workflow for meta-analysis from data import to report generation
• Support for multiple effect measures (OR, RR, MD, SMD, HR)
• Automated statistical validation and data quality checks
• Forest plots and funnel plots with customizable styles
• Publication bias assessment (Egger's test, Begg's test, trim-and-fill)
• Heterogeneity analysis (I², Q-test, τ²)
• Support for CSV, Excel, and RevMan data formats
• Comprehensive report generation (HTML/PDF/Word)
• Session-based workflow management
• Containerized R environment with meta, metafor packages

Perfect for researchers, clinicians, and data scientists conducting systematic reviews and meta-analyses.
icon: 📊
source:
project: https://github.com/matheus-rech/mcp-meta-analysis-with-r
run:
volumes:
- '{{meta-analysis.sessions_path}}:/app/user_sessions'
- '{{meta-analysis.logs_path}}:/app/logs'
config:
description: Configure paths for session data and logs
env:
- name: NODE_ENV
example: production
value: 'production'
- name: LOG_LEVEL
example: info
value: 'info'
- name: USE_DOCKER
example: 'false'
value: 'true'
description: Use Docker for R execution (set to false if R is installed locally)
parameters:
type: object
properties:
sessions_path:
type: string
description: Directory path where session data will be stored
default: /Users/local-test/meta-analysis-sessions
logs_path:
type: string
description: Directory path where logs will be stored
default: /Users/local-test/meta-analysis-logs
required:
- sessions_path
- logs_path