This release is a pre-release and may not be stable for production use.
Copick MCP Server
A Model Context Protocol (MCP) server for Copick that provides two sets of tools:
- Data Exploration Tools - Browse and query copick project contents (read-only)
- CLI Introspection Tools - Discover and validate copick CLI commands for building processing pipelines
Features
- Read-only data exploration - List and inspect runs, picks, segmentations, meshes, tomograms, and project metadata
- CLI discovery - Dynamically discover all available copick CLI commands with full documentation
- Command validation - Validate copick CLI command syntax using Click's native parsing
- Smart caching - Efficient caching of copick project roots
- Easy setup - Simple CLI for registering with Claude Desktop or Claude Code
Installation
pip install copick-mcp
During the 2.0 prerelease series, opt in explicitly:
pip install --pre "copick-mcp>=2.0.0a1,<3"
The optional torch command integration is available with:
pip install "copick-mcp[torch]"
For the matching 2.0 prerelease stack, use
pip install --pre "copick-mcp[torch]>=2.0.0a1,<3".
Copick 2.0 and Zarr compatibility
The copick-mcp 2.0 line requires Python 3.11 or newer, copick 2.0, and copick-utils 2.0. Its data-exploration tools use copick's entity and metadata APIs, so they can inspect both legacy OME-Zarr 0.4 / Zarr v2 projects and OME-Zarr 0.5 / Zarr v3 projects supported by copick.
copick-mcp does not open arrays, interpret OME-Zarr layouts, or write project
data. New output format and storage-backend behavior are owned by copick and
the command plugin being described. Installing the torch extra adds the
copick-torch 2.0 command plugins and enables installed nnUNet workflow status;
no model is loaded or executed by introspection.
Quick Setup
Register with Claude Desktop
Use the copick CLI to register the MCP server with Claude Desktop:
# Basic setup (default settings)
copick setup mcp
# Setup with custom server name
copick setup mcp --server-name "my-copick-server"
# Setup with default config path (optional - can be provided per-request)
copick setup mcp --config-path "/path/to/default/config.json"
# Check registration status
copick setup mcp-status
After setup:
- Restart Claude Desktop completely
- The Copick MCP tools should now be available
- The server starts automatically when Claude Desktop connects
Register with Claude Code
The MCP server can also be registered with Claude Code, either globally or for a specific project:
# Global setup (available in all Claude Code sessions)
copick setup mcp --target code-global
# Project-specific setup (creates .mcp.json in current directory)
copick setup mcp --target code-project
# Project-specific setup for a different directory
copick setup mcp --target code-project --project-path /path/to/project
# Check status for Claude Code
copick setup mcp-status --target code-global
copick setup mcp-status --target code-project
Target options:
desktop(default) - Claude Desktop applicationcode-global- Claude Code global config (~/.claude.json)code-project- Claude Code project-specific config (.mcp.jsonin project root)
Manual Configuration (Optional)
If you prefer manual setup, add the following configuration to the appropriate file:
Claude Desktop:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%/Claude/claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Claude Code:
- Global:
~/.claude.json - Project-specific:
.mcp.jsonin your project root
{
"mcpServers": {
"copick-mcp": {
"command": "python",
"args": ["-m", "copick_mcp.main"],
"env": {}
}
}
}
Available Tools
Data Exploration Tools (Read-Only)
All data exploration tools require a config_path parameter pointing to your copick configuration file.
list_runs
List all runs in a Copick project.
- Args:
config_path(str) - Returns: List of run names
get_run_details
Get detailed information about a specific run including voxel spacings, picks, meshes, and segmentations.
- Args:
config_path(str),run_name(str) - Returns: Comprehensive run details
list_objects
List all pickable objects defined in the project.
- Args:
config_path(str) - Returns: List of objects with properties (name, type, label, color, radius, etc.)
list_picks
List picks for a run with optional filtering.
- Args:
config_path(str),run_name(str),object_name(optional),user_id(optional),session_id(optional) - Returns: List of picks with point counts and sample coordinates
list_meshes
List meshes for a run with optional filtering.
- Args:
config_path(str),run_name(str),object_name(optional),user_id(optional),session_id(optional) - Returns: List of meshes
list_segmentations
List segmentations for a run with optional filtering.
- Args:
config_path(str),run_name(str),voxel_size(optional),name(optional),user_id(optional),session_id(optional),is_multilabel(optional) - Returns: List of segmentations with metadata
list_tomograms
List tomograms for a specific run and voxel spacing.
- Args:
config_path(str),run_name(str),voxel_spacing(float) - Returns: List of tomograms with feature information
list_voxel_spacings
List all voxel spacings available for a run.
- Args:
config_path(str),run_name(str) - Returns: List of voxel spacings with tomogram counts
get_project_info
Get general project information and statistics.
- Args:
config_path(str) - Returns: Project metadata and entity counts
get_json_config
Get the raw JSON configuration of the project.
- Args:
config_path(str) - Returns: Complete configuration dictionary
CLI Introspection Tools
These tools help LLMs discover and validate copick CLI commands for building processing pipelines.
list_copick_cli_commands
List all available copick CLI commands hierarchically organized by group.
- Returns: Complete command tree including:
main: Core commands (add, browse, config, deposit, info, new, stats, sync)inference: Inference commands (e.g., membrain-seg)training: Training commandsevaluation: Evaluation commandsprocess: Processing commands (downsample, fit-spline, hull, skeletonize, etc.)convert: Conversion commands (picks2seg, mesh2seg, seg2picks, etc.)logical: Logical operations (clipmesh, clippicks, meshop, segop, etc.)setup: Integration commands, including copick-mcp registrationdownload: Download commands contributed by installed plugins
The plugin-group inventory comes from copick itself. Compatible future groups therefore appear in MCP discovery without a matching hardcoded list here.
get_copick_cli_command_info
Get detailed information about a specific command.
- Args:
command_path(str) - e.g., "convert.picks2seg" or "add" - Returns: Full command details including:
- Help text and short description
- All parameters with types, defaults, and help text
- Required vs optional parameters
- Usage examples (if present in help)
- Command group
validate_copick_cli_command
Validate a copick CLI command string using Click's syntax validation.
- Args:
command_string(str) - e.g., "copick convert picks2seg --config /path/to/config.json ..." - Returns: Validation result including:
- Valid/invalid status
- Missing required parameters
- Parameter type errors
- Helpful error messages from Click
Usage Examples
Data Exploration Workflow
User: "Show me all runs in my copick project at /data/my_project/config.json"
Assistant uses: list_runs(config_path="/data/my_project/config.json")
User: "What picks are available for run TS_001?"
Assistant uses: list_picks(config_path="/data/my_project/config.json", run_name="TS_001")
User: "Show me only the ribosome picks from user 'annotator1'"
Assistant uses: list_picks(
config_path="/data/my_project/config.json",
run_name="TS_001",
object_name="ribosome",
user_id="annotator1"
)
CLI Discovery Workflow
User: "I want to convert picks to a segmentation. What copick command can do that?"
Assistant uses: list_copick_cli_commands()
# Discovers convert.picks2seg command
Assistant uses: get_copick_cli_command_info(command_path="convert.picks2seg")
# Gets full documentation and parameters
Assistant explains:
"The picks2seg command converts picks to segmentation by painting spheres at pick locations.
It requires:
- --config: Path to copick config
- --input: Picks URI (format: object_name:user_id/session_id)
- --output: Segmentation URI (format: name:user_id/session_id@voxel_spacing)
- --radius: Sphere radius in angstroms (default: 10.0)"
User: "Can you validate this command for me: copick convert picks2seg --config /data/config.json --input 'ribosome:user1/manual-001' --output 'ribosome:picks2seg/painted-001@10.0'"
Assistant uses: validate_copick_cli_command(
command_string="copick convert picks2seg --config /data/config.json --input 'ribosome:user1/manual-001' --output 'ribosome:picks2seg/painted-001@10.0'"
)# Returns validation result: valid=True if syntax is correct
Pipeline Building Workflow
User: "I want to build a pipeline that:
1. Converts ribosome picks to meshes
2. Computes the convex hull of those meshes
3. Converts the hulls to segmentations"
Assistant uses: list_copick_cli_commands()
# Discovers relevant commands in convert and process groups
Assistant uses: get_copick_cli_command_info(command_path="convert.picks2mesh")
Assistant uses: get_copick_cli_command_info(command_path="process.hull")
Assistant uses: get_copick_cli_command_info(command_path="convert.mesh2seg")
# Gets documentation for each command
Assistant suggests the pipeline:
"Here's a three-step pipeline for your workflow:
Step 1: Convert picks to meshes
copick convert picks2mesh --config /path/to/config.json \
--input 'ribosome:user1/manual-001' \
--output 'ribosome:pipeline/step1-meshes' \
--method convex_hull
Step 2: Compute convex hull (if not done in step 1)
copick process hull --config /path/to/config.json \
--input-mesh 'ribosome:pipeline/step1-meshes' \
--output-mesh 'ribosome:pipeline/step2-hulls'
Step 3: Convert meshes to segmentation
copick convert mesh2seg --config /path/to/config.json \
--input 'ribosome:pipeline/step2-hulls' \
--output 'ribosome:pipeline/final-seg@10.0'"
Management Commands
# Check MCP server status (Claude Desktop)
copick setup mcp-status
# Check status for Claude Code
copick setup mcp-status --target code-global
copick setup mcp-status --target code-project
# Remove MCP server configuration (Claude Desktop)
copick setup mcp-remove --server-name "copick-mcp"
# Remove from Claude Code
copick setup mcp-remove --server-name "copick-mcp" --target code-global
copick setup mcp-remove --server-name "copick-mcp" --target code-project
# Force removal without confirmation
copick setup mcp-remove --server-name "copick-mcp" --force
Troubleshooting
- "MCP server not found": Ensure you've restarted Claude Desktop completely after configuration
- "Python module not found": Verify the package is installed and the Python path is correct in the config
- "Permission denied": Check that the Claude config directory is writable
- "Invalid JSON": Use
copick setup mcp-statusto validate your configuration - "Command not found" during CLI introspection: Ensure copick and all plugin packages (copick-torch, copick-utils) are installed
- "setup command not found": Make sure copick-mcp is installed (
pip install -e .from the copick-mcp directory)
Development
# Install in development mode
cd copick-mcp
uv sync --locked --extra test --extra dev
# Format and lint
uv run pre-commit run --all-files
# Run tests
uv run pytest
# Run the server locally for testing
uv run python -m copick_mcp.main
License
MIT License - See LICENSE file for details.
Links
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 copick_mcp-2.0.0a1.tar.gz.
File metadata
- Download URL: copick_mcp-2.0.0a1.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9f270790f3155244a3f0100e3ef72edb0cc0ff66a1efecda40837bbbdfa01b5
|
|
| MD5 |
c03cc526178fb7326e03a3119321ebbc
|
|
| BLAKE2b-256 |
cfe40739392303cfc7af080607fcfb4b8634cf63e0b19787545bce70c834bb99
|
Provenance
The following attestation bundles were made for copick_mcp-2.0.0a1.tar.gz:
Publisher:
release-please.yml on copick/copick-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
copick_mcp-2.0.0a1.tar.gz -
Subject digest:
e9f270790f3155244a3f0100e3ef72edb0cc0ff66a1efecda40837bbbdfa01b5 - Sigstore transparency entry: 2510174772
- Sigstore integration time:
-
Permalink:
copick/copick-mcp@7ac024925173b40628b19860118da8af497efc27 -
Branch / Tag:
refs/heads/v2.0 - Owner: https://github.com/copick
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-please.yml@7ac024925173b40628b19860118da8af497efc27 -
Trigger Event:
push
-
Statement type:
File details
Details for the file copick_mcp-2.0.0a1-py3-none-any.whl.
File metadata
- Download URL: copick_mcp-2.0.0a1-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7789b3bc5388e89308619a6b97113b7742ef50877d95ff9627c06915ddd56e8b
|
|
| MD5 |
20f82a2f22353afc38c599019fa27c57
|
|
| BLAKE2b-256 |
b7b222ea07e84e3339d168e86074843b14a48fb351829cd75facbaffc95f2ccb
|
Provenance
The following attestation bundles were made for copick_mcp-2.0.0a1-py3-none-any.whl:
Publisher:
release-please.yml on copick/copick-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
copick_mcp-2.0.0a1-py3-none-any.whl -
Subject digest:
7789b3bc5388e89308619a6b97113b7742ef50877d95ff9627c06915ddd56e8b - Sigstore transparency entry: 2510174877
- Sigstore integration time:
-
Permalink:
copick/copick-mcp@7ac024925173b40628b19860118da8af497efc27 -
Branch / Tag:
refs/heads/v2.0 - Owner: https://github.com/copick
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release-please.yml@7ac024925173b40628b19860118da8af497efc27 -
Trigger Event:
push
-
Statement type: