Skip to main content

An IMAS Data Dictionary MCP server

Project description

IMAS MCP Server

pre-commit Ruff Python versions CI/CD status Coverage status Documentation ASV

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.

Quick Start

Select the setup method that matches your environment:

  • HTTP (Hosted): Zero install. Connect to the public endpoint running the latest tagged MCP server from the ITER Organization.
  • UV (Local): Install and run in your own Python environment for editable development.
  • Docker : Run an isolated container with pre-built indexes.
  • Slurm / HPC (STDIO): Launch inside a cluster allocation without opening network ports.

Choose hosted for instant access; choose a local option for customization or controlled resources.

HTTP | UV | Docker | Slurm / HPC

HTTP (Remote Public Endpoint)

Connect to the public ITER Organization hosted server—no local install.

VS Code (Interactive)

  1. Ctrl+Shift+P → "MCP: Add Server"
  2. Select "HTTP Server"
  3. Name: imas
  4. 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:

  1. If SLURM_JOB_ID present → start inside current allocation.
  2. Else requests node with srun --pty then 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:

  • imas-data-dictionary - Git development package, required only during wheel building for parsing latest DD changes
  • rich - Used for enhanced console output during build processes

For runtime: The imas-data-dictionaries PyPI package is now a core dependency and provides access to stable DD versions (e.g., 4.0.0). This eliminates the need for the git package at runtime and ensures reproducible builds.

For developers: Build-time dependencies are included in the [build-system.requires] section for wheel building. The git package is only needed when building wheels with latest DD changes.

# Regular development - uses imas-data-dictionaries (PyPI)
uv sync --all-extras

# Set DD version for building (defaults to 4.0.0)
export IMAS_DD_VERSION=4.0.0
uv run build-schemas

Location in configuration:

  • Build-time dependencies: Listed in [build-system.requires] in pyproject.toml
  • Runtime dependencies: imas-data-dictionaries>=4.0.0 in [project.dependencies]

Note: The IMAS_DD_VERSION environment variable controls which DD version is used for building schemas and embeddings. Docker containers have this set to 4.0.0 by default.

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 (default: streamable-http on port 8000)
uv run --active imas-mcp --no-rich

# Run with stdio transport for MCP clients
uv run --active imas-mcp --no-rich --transport stdio

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 --force to 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 --force to rebuild embeddings cache
  • Use --no-normalize to disable embedding normalization
  • Use --half-precision to reduce memory usage
  • Use --similarity-threshold 0.1 to 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

  1. Installation: During package installation, the index builds automatically when the module first imports
  2. Build Process: The system parses the IMAS data dictionary and creates comprehensive JSON files with structured data
  3. Embedding Generation: Creates semantic embeddings using sentence transformers for advanced search capabilities
  4. 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
  5. Import: When importing the module, the pre-built index and embeddings load in ~1 second

Optional Dependencies and Runtime Requirements

The IMAS MCP server now includes imas-data-dictionaries as a core dependency, providing stable DD version access (default: 4.0.0). The git development package (imas-data-dictionary) is used during wheel building when parsing latest DD changes.

Package Installation Options

  • Runtime: uv add imas-mcp - Includes all transports (stdio, sse, streamable-http)
  • Full installation: uv add imas-mcp - Recommended for all users

Data Dictionary Access

The system uses composable accessors to access IMAS Data Dictionary version and metadata:

  1. Environment Variable: IMAS_DD_VERSION (highest priority) - Set to specify DD version (e.g., "4.0.0")
  2. Metadata File: JSON metadata stored alongside indexes
  3. Index Name Parsing: Extracts version from index filename
  4. Package Default: Falls back to imas-data-dictionaries package (4.0.0)

This design ensures the server can:

  • Build indexes using the version specified by IMAS_DD_VERSION
  • Run with pre-built indexes using version metadata
  • Access stable DD versions through imas-data-dictionaries PyPI package

Index Building vs Runtime

  • Index Building: Requires imas-data-dictionary package 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

  1. 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
  2. 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
  3. Hybrid Search (SearchMode.HYBRID):

    • Combines semantic and lexical approaches
    • Provides both exact matches and conceptual relevance
    • Balanced performance and comprehensiveness
  4. 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 metadata
  • ids://structure/{ids_name} - Detailed structure for specific IDS
  • ids://physics-domains - Physics domain mappings and relationships
  • examples://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 explanations
  • measurement-workflow - Create measurement analysis workflows
  • cross-ids-analysis - Analyze relationships between multiple IDS
  • imas-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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

imas_mcp-3.0.0.tar.gz (439.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

imas_mcp-3.0.0-py3-none-any.whl (1.6 MB view details)

Uploaded Python 3

File details

Details for the file imas_mcp-3.0.0.tar.gz.

File metadata

  • Download URL: imas_mcp-3.0.0.tar.gz
  • Upload date:
  • Size: 439.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for imas_mcp-3.0.0.tar.gz
Algorithm Hash digest
SHA256 9f3bee569f7828f54cb676fb314ef6b0a9608920234ce88e5bee8fed78ac13b3
MD5 2916906171b5a87c9bfc8128859476f9
BLAKE2b-256 f836275085ba5f0d0a7595ac4efcf8a15166e52fb648f03c2f4f462dd235291d

See more details on using hashes here.

File details

Details for the file imas_mcp-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: imas_mcp-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for imas_mcp-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 13c3341c24b5ea4b1a5bdc7c796606311398ef617bd262db29bc87d4d153ce5f
MD5 05441437fb828bc5a93bf8c53b71347c
BLAKE2b-256 5cb262395b7809452e183fd5e97e41a0b969d5f7bfa2a642fd7deecbb6d142ef

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page