An IMAS Data Dictionary MCP server
Project description
IMAS MCP Server
A Model Context Protocol (MCP) server providing AI assistants with access to IMAS (Integrated Modelling & Analysis Suite) data structures through natural language search and optimized path indexing.
docker ps --filter name=imas-mcp --format "table {{.Names}}\t{{.Status}}"
Quick Start
Choose the setup path that fits your environment. The remote public HTTP endpoint enables interaction with an MCP server hosted by the ITER Organization; others give you local control.
HTTP | UV | Docker | Slurm / HPC
HTTP (Remote Public Endpoint)
Connect to the managed public server—no local install.
VS Code (Interactive)
Ctrl+Shift+P→ "MCP: Add Server"- Select "HTTP Server"
- Name:
imas - URL:
https://imas-dd.iter.org/mcp
VS Code (Manual JSON) – workspace .vscode/mcp.json (or inside "mcp" in user settings):
{
"servers": {
"imas": { "type": "http", "url": "https://imas-dd.iter.org/mcp" }
}
}
Claude Desktop config (pick path for your OS):
Windows: %APPDATA%\\Claude\\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Linux: ~/.config/claude/claude_desktop_config.json
{
"mcpServers": {
"imas-mcp-hosted": {
"command": "npx",
"args": ["mcp-remote", "https://imas-dd.iter.org/mcp"]
}
}
}
OP Client (Pending Clarification)
Placeholder: clarify what "op" refers to (e.g. OpenAI, Operator) to add tailored instructions.
UV Local Install
Install with uv:
uv tool install imas-mcp
# or add to a project env
uv add imas-mcp
VS Code:
{
"servers": {
"imas-mcp-uv": {
"type": "stdio",
"command": "uv",
"args": ["run", "--active", "imas-mcp", "--no-rich"]
}
}
}
Claude Desktop:
{
"mcpServers": {
"imas-mcp-uv": {
"command": "uv",
"args": ["run", "--active", "imas-mcp", "--no-rich"]
}
}
}
Docker Setup
Run locally in a container (pre-built indexes included):
docker run -d \
--name imas-mcp \
-p 8000:8000 \
ghcr.io/iterorganization/imas-mcp:latest-streamable-http
# Optional: verify
docker ps --filter name=imas-mcp --format "table {{.Names}}\t{{.Status}}"
VS Code (.vscode/mcp.json):
{
"servers": {
"imas-mcp-docker": { "type": "http", "url": "http://localhost:8000/mcp" }
}
}
Claude Desktop:
{
"mcpServers": {
"imas-mcp-docker": {
"command": "npx",
"args": ["mcp-remote", "http://localhost:8000/mcp"]
}
}
}
Slurm / HPC (STDIO)
Helper script: scripts/imas_mcp_slurm_stdio.sh
VS Code (.vscode/mcp.json, JSONC ok):
{
"servers": {
"imas-slurm-stdio": {
"type": "stdio",
"command": "scripts/imas_mcp_slurm_stdio.sh"
}
}
}
Launch behavior:
- If
SLURM_JOB_IDpresent → start inside current allocation. - Else requests node with
srun --ptythen starts server (unbuffered stdio).
Resource tuning (export before client starts):
| Variable | Purpose | Default |
|---|---|---|
IMAS_MCP_SLURM_TIME |
Walltime | 08:00:00 |
IMAS_MCP_SLURM_CPUS |
CPUs per task | 1 |
IMAS_MCP_SLURM_MEM |
Memory (e.g. 4G) |
Slurm default |
IMAS_MCP_SLURM_PARTITION |
Partition | Cluster default |
IMAS_MCP_SLURM_ACCOUNT |
Account/project | User default |
IMAS_MCP_SLURM_EXTRA |
Extra raw srun flags |
(empty) |
IMAS_MCP_USE_ENTRYPOINT |
Use imas-mcp entrypoint vs python -m |
0 |
Example:
export IMAS_MCP_SLURM_TIME=02:00:00
export IMAS_MCP_SLURM_CPUS=4
export IMAS_MCP_SLURM_MEM=8G
export IMAS_MCP_SLURM_PARTITION=compute
Direct CLI:
scripts/imas_mcp_slurm_stdio.sh --ids-filter "core_profiles equilibrium"
Why STDIO? Avoids opening network ports; all traffic rides the existing srun pseudo-TTY.
Example IMAS Queries
Once you have the IMAS MCP server configured, you can interact with it using natural language queries. Use the @imas prefix to direct queries to the IMAS server:
Basic Search Examples
@imas Find data paths related to plasma temperature
@imas Search for electron density measurements
@imas What data is available for magnetic field analysis?
@imas Show me core plasma profiles
Physics Concept Exploration
@imas Explain what equilibrium reconstruction means in plasma physics
@imas What is the relationship between pressure and magnetic fields?
@imas How do transport coefficients relate to plasma confinement?
@imas Describe the physics behind current drive mechanisms
Data Structure Analysis
@imas Analyze the structure of the core_profiles IDS
@imas What are the relationships between equilibrium and core_profiles?
@imas Show me identifier schemas for transport data
@imas Export bulk data for equilibrium, core_profiles, and transport IDS
Advanced Queries
@imas Find all paths containing temperature measurements across different IDS
@imas What physics domains are covered in the IMAS data dictionary?
@imas Show me measurement dependencies for fusion power calculations
@imas Explore cross-domain relationships between heating and confinement
Workflow and Integration
@imas How do I access electron temperature profiles from IMAS data?
@imas What's the recommended workflow for equilibrium analysis?
@imas Show me the branching logic for diagnostic identifier schemas
@imas Export physics domain data for comprehensive transport analysis
The IMAS MCP server provides 8 specialized tools for different types of queries:
- Search: Natural language and structured search across IMAS data paths
- Explain: Physics concepts with IMAS context and domain expertise
- Overview: General information about IMAS structure and available data
- Analyze: Detailed structural analysis of specific IDS
- Explore: Relationship discovery between data paths and physics domains
- Identifiers: Exploration of enumerated options and branching logic
- Bulk Export: Comprehensive export of multiple IDS with relationships
- Domain Export: Physics domain-specific data with measurement dependencies
Development
For local development and customization:
Setup
# Clone repository
git clone https://github.com/iterorganization/imas-mcp.git
cd imas-mcp
# Install development dependencies (search index build takes ~8 minutes first time)
uv sync --all-extras
Build Dependencies
This project requires additional dependencies during the build process that are not part of the runtime dependencies. These include:
imas-data-dictionary- Required for generating the search index during buildrich- Used for enhanced console output during build processes
For developers: These build dependencies are included in the dev dependency group and can be installed with:
uv sync --group dev
Location in configuration:
- Build-time dependencies: Listed in
[build-system.requires]inpyproject.toml - Development access: Also available in
[dependency-groups.dev]for local development
Note: Regular users installing the package don't need these dependencies - they're only required when building from source or working with the data dictionary directly.
Development Commands
# Run tests
uv run pytest
# Run linting and formatting
uv run ruff check .
uv run ruff format .
# Build schema data structures from IMAS data dictionary
uv run build-schemas
# Build document store and semantic search embeddings
uv run build-embeddings
# Run the server locally
uv run --active imas-mcp --no-rich --transport streamable-http --port 8000
# Run with stdio transport for MCP development
uv run --active imas-mcp --no-rich --transport stdio --auto-build
Build Scripts
The project includes two separate build scripts for creating the required data structures:
build-schemas - Creates schema data structures from IMAS XML data dictionary:
- Transforms XML data into optimized JSON format
- Creates catalog and relationship files
- Use
--ids-filter "core_profiles equilibrium"to build specific IDS - Use
--forceto rebuild even if files exist
build-embeddings - Creates document store and semantic search embeddings:
- Builds in-memory document store from JSON data
- Generates sentence transformer embeddings for semantic search
- Caches embeddings for fast loading
- Use
--model-name "all-mpnet-base-v2"for different models - Use
--forceto rebuild embeddings cache - Use
--no-normalizeto disable embedding normalization - Use
--half-precisionto reduce memory usage - Use
--similarity-threshold 0.1to set similarity score thresholds
Note: The build hook creates JSON data. Build embeddings separately using build-embeddings for better control and performance.
Local Development MCP Configuration
VS Code - The repository includes a .vscode/mcp.json file with pre-configured development server options. Use the imas-local-stdio configuration for local development.
Claude Desktop - Add to your config file:
{
"mcpServers": {
"imas-local-dev": {
"command": "uv",
"args": ["run", "--active", "imas-mcp", "--no-rich", "--auto-build"],
"cwd": "/path/to/imas-mcp"
}
}
}
How It Works
- Installation: During package installation, the index builds automatically when the module first imports
- Build Process: The system parses the IMAS data dictionary and creates comprehensive JSON files with structured data
- Embedding Generation: Creates semantic embeddings using sentence transformers for advanced search capabilities
- Serialization: The system stores indexes in organized subdirectories:
- JSON data:
imas_mcp/resources/schemas/(LLM-optimized structured data) - Embeddings cache: Pre-computed sentence transformer embeddings for semantic search
- JSON data:
- Import: When importing the module, the pre-built index and embeddings load in ~1 second
Optional Dependencies and Runtime Requirements
The IMAS MCP server uses a composable pattern that allows it to work with or without the imas-data-dictionary package at runtime:
Package Installation Options
- Runtime only:
uv add imas-mcp- Uses pre-built indexes, stdio transport only - With HTTP support:
uv add imas-mcp[http]- Adds support for sse/streamable-http transports - With build support:
uv add imas-mcp[build]- Includesimas-data-dictionaryfor index building - Full installation:
uv add imas-mcp[all]- Includes all optional dependencies
Data Dictionary Access
The system uses multiple fallback strategies to access IMAS Data Dictionary version and metadata:
- Environment Variable:
IMAS_DD_VERSION(highest priority) - Metadata File: JSON metadata stored alongside indexes
- Index Name Parsing: Extracts version from index filename
- IMAS Package: Direct access to
imas-data-dictionary(if available)
This design ensures the server can:
- Build indexes when the IMAS package is available
- Run with pre-built indexes without requiring the IMAS package
- Access version/metadata through multiple reliable fallback mechanisms
Index Building vs Runtime
- Index Building: Requires
imas-data-dictionarypackage to parse XML and create indexes - Runtime Search: Only requires pre-built indexes and metadata, no IMAS package dependency
- Version Access: Uses composable accessor pattern with multiple fallback strategies
Implementation Details
Search Implementation
The search system is the core component that provides fast, flexible search capabilities over the IMAS Data Dictionary. It combines efficient indexing with IMAS-specific data processing and semantic search to enable different search modes:
Search Methods
-
Semantic Search (
SearchMode.SEMANTIC):- AI-powered semantic understanding using sentence transformers
- Natural language queries with physics context awareness
- Finds conceptually related terms even without exact keyword matches
- Best for exploratory research and concept discovery
-
Lexical Search (
SearchMode.LEXICAL):- Fast text-based search with exact keyword matching
- Boolean operators (
AND,OR,NOT) - Wildcards (
*and?patterns) - Field-specific searches (e.g.,
documentation:plasma ids:core_profiles) - Fastest performance for known terminology
-
Hybrid Search (
SearchMode.HYBRID):- Combines semantic and lexical approaches
- Provides both exact matches and conceptual relevance
- Balanced performance and comprehensiveness
-
Auto Search (
SearchMode.AUTO):- Intelligent search mode selection based on query characteristics
- Automatically chooses optimal search strategy
- Adaptive performance optimization
Key Capabilities
- Search Mode Selection: Choose between semantic, lexical, hybrid, or auto modes
- Performance Caching: TTL-based caching system with hit rate monitoring
- Semantic Embeddings: Pre-computed sentence transformer embeddings for fast semantic search
- Physics Context: Domain-aware search with IMAS-specific terminology
- Advanced Query Parsing: Supports complex search expressions and field filtering
- Relevance Ranking: Results sorted by match quality and physics relevance
Future Work
MCP Resources Implementation (Phase 2 - Planned)
We plan to implement MCP resources to provide efficient access to pre-computed IMAS data:
Planned Resource Features
- Static JSON IDS Data: Pre-computed IDS catalog and structure data served as MCP resources
- Physics Measurement Data: Domain-specific measurement data and relationships
- Usage Examples: Code examples and workflow patterns for common analysis tasks
- Documentation Resources: Interactive documentation and API references
Resource Types
ids://catalog- Complete IDS catalog with metadataids://structure/{ids_name}- Detailed structure for specific IDSids://physics-domains- Physics domain mappings and relationshipsexamples://search-patterns- Common search patterns and workflows
MCP Prompts Implementation (Phase 3 - Planned)
Specialized prompts for physics analysis and workflow automation:
Planned Prompt Categories
- Physics Analysis Prompts: Specialized prompts for plasma physics analysis tasks
- Code Generation Prompts: Generate Python analysis code for IMAS data
- Workflow Automation Prompts: Automate complex multi-step analysis workflows
- Data Validation Prompts: Create validation approaches for IMAS measurements
Prompt Templates
physics-explain- Generate comprehensive physics explanationsmeasurement-workflow- Create measurement analysis workflowscross-ids-analysis- Analyze relationships between multiple IDSimas-python-code- Generate Python code for data analysis
Performance Optimization (Phase 4 - In Progress)
Continued optimization of search and tool performance:
Current Optimizations (Implemented)
- ✅ Search Mode Selection: Multiple search modes (semantic, lexical, hybrid, auto)
- ✅ Search Caching: TTL-based caching with hit rate monitoring for search operations
- ✅ Semantic Embeddings: Pre-computed sentence transformer embeddings
- ✅ ASV Benchmarking: Automated performance monitoring and regression detection
Planned Optimizations
- Advanced Caching Strategy: Intelligent cache management for all MCP operations (beyond search)
- Performance Monitoring: Enhanced metrics tracking and analysis across all tools
- Multi-Format Export: Optimized export formats (raw, structured, enhanced)
- Selective AI Enhancement: Conditional AI enhancement based on request context
Testing and Quality Assurance (Phase 5 - Planned)
Comprehensive testing strategy for all MCP components:
Test Implementation Goals
- MCP Tool Testing: Complete test coverage using FastMCP 2 testing framework
- Resource Testing: Validation of all MCP resources and data integrity
- Prompt Testing: Automated testing of prompt templates and responses
- Performance Testing: Benchmarking and regression detection for all tools
Docker Usage
The server is available as a pre-built Docker container with the index already built:
# Pull and run the latest container
docker run -d -p 8000:8000 ghcr.io/iterorganization/imas-mcp:latest
# Or use Docker Compose
docker-compose up -d
See DOCKER.md for detailed container usage, deployment options, and troubleshooting.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file imas_mcp-2.4.15.tar.gz.
File metadata
- Download URL: imas_mcp-2.4.15.tar.gz
- Upload date:
- Size: 415.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c8a2b94889087f69d1fa1e8431cb580d1247a36ac640d707b21065fcbb9882a
|
|
| MD5 |
78b01b48887a29ad17b46d63168ee393
|
|
| BLAKE2b-256 |
1467d7655ee312f922a8a44fe09db4d6fe4f3f3e8c08d9e1547abbceddc06a69
|
File details
Details for the file imas_mcp-2.4.15-py3-none-any.whl.
File metadata
- Download URL: imas_mcp-2.4.15-py3-none-any.whl
- Upload date:
- Size: 1.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15d3aee1aee7eb47644185a1a4a40294387307032a32fa7ed55fcdb27db26677
|
|
| MD5 |
189811dd4665ab725513ba54f7de2cac
|
|
| BLAKE2b-256 |
3e93eec8a6ddeb91d6f6bf4b9074b981aa7eddc9d467d8f195029784d2d00581
|