cdisc-mcp
Exposes CDISC standards data including SDTM, ADaM, CDASH, and Controlled Terminology as tools for AI assistants via the CDISC Library API. It enables users to search standards, retrieve domain variables, and access codelist definitions to facilitate clinical research data management.
README
cdisc-mcp
CDISC Library MCP Server — exposes CDISC standards data (SDTM, ADaM, CDASH, Controlled Terminology) as MCP tools that AI assistants can call directly.
For a full guide covering installation, API key setup, connecting to Claude Desktop or VS Code, tool reference, and troubleshooting, see the User Manual.
Installation
# Install with development dependencies (recommended)
pip install -e ".[dev]"
# Install runtime only
pip install -e .
Configuration
A CDISC Library personal API key is required. Obtain one at https://library.cdisc.org.
Linux / macOS
export CDISC_API_KEY=your_api_key_here
Windows (Command Prompt)
set CDISC_API_KEY=your_api_key_here
Windows (PowerShell)
$env:CDISC_API_KEY = "your_api_key_here"
Running the Server
# Via installed entry point
cdisc-mcp
# Via Python module
python -m cdisc_mcp.server
Available Tools (12)
| Tool | Description |
|---|---|
list_products |
List all available CDISC standards and their published versions |
search_cdisc |
Search across all CDISC standards by keyword |
get_sdtm_domains |
List all SDTM domains for a given version |
get_sdtm_domain_variables |
Get all variables defined in an SDTM domain |
get_sdtm_variable |
Get the full definition of a specific SDTM variable |
get_adam_datastructures |
List all ADaM data structures for a given version |
get_adam_variable |
Get the definition of a specific ADaM variable |
get_cdash_domains |
List all CDASH domains for a given version |
get_cdash_domain_fields |
Get all data collection fields for a CDASH domain |
list_ct_packages |
List all available Controlled Terminology packages |
get_codelist |
Get a specific CT codelist definition and metadata |
get_codelist_terms |
List all valid terms in a CT codelist (max 100) |
Web Explorer (Optional)
A lightweight browser UI for interactively testing tools without an AI client.
# Install web dependencies
pip install -e ".[web]"
# Set API key and start the bridge server
set CDISC_API_KEY=your_api_key_here # Windows CMD
python web/app.py
Open http://localhost:8080 in your browser. The explorer lets you select any of the 12 tools, fill in parameters, run them, and inspect syntax-highlighted JSON responses.
Development
Running Tests
# Run full test suite with coverage (must reach 80%)
pytest
# Run specific test files
pytest tests/test_config.py tests/test_client.py tests/test_response_formatter.py tests/test_tools.py -v
Project Structure
src/cdisc_mcp/
__init__.py # Package version
client.py # Async HTTP client with caching and retry
config.py # Configuration from environment variables
errors.py # Custom exception types
response_formatter.py # Response cleaning and truncation
server.py # FastMCP server entry point
tools/
search.py # list_products, search_cdisc
sdtm.py # SDTM domain and variable tools
adam.py # ADaM data structure and variable tools
cdash.py # CDASH domain and field tools
terminology.py # Controlled Terminology tools
_validators.py # Input validation helpers
web/
app.py # FastAPI bridge server (HTTP → tool functions)
index.html # Single-file browser explorer UI
tests/
test_config.py
test_client.py
test_response_formatter.py
test_tools.py
test_errors.py
test_server.py
unit/ # Additional unit tests
integration/ # Integration tests
Code Quality
# Linting
ruff check src/ tests/
# Type checking
mypy src/
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.