File size: 2,271 Bytes
778fec6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
    "project_name": "MatDeepLearn",
    "project_description": "A platform for testing and using graph neural networks (GNNs) for materials chemistry applications",
    "repository": "https://github.com/Fung-Lab/MatDeepLearn",
    "mcp_tools": [
        {
            "name": "check_environment",
            "description": "Check if MatDeepLearn environment is properly configured and GPU is available"
        },
        {
            "name": "list_available_models",
            "description": "List all available GNN models in MatDeepLearn"
        },
        {
            "name": "get_model_config",
            "description": "Get the default configuration for a specific model"
        },
        {
            "name": "process_structure_data",
            "description": "Process atomic structure data into graph format for GNN training"
        },
        {
            "name": "train_model",
            "description": "Train a GNN model on processed structure data"
        },
        {
            "name": "predict_properties",
            "description": "Use a trained model to predict properties of new structures"
        },
        {
            "name": "cross_validation",
            "description": "Perform k-fold cross validation on a dataset"
        },
        {
            "name": "analyze_structure",
            "description": "Analyze the structure of atomic data and convert to graph representation info"
        },
        {
            "name": "compare_models",
            "description": "Compare performance of different GNN models on a dataset"
        },
        {
            "name": "get_dataset_info",
            "description": "Get information about a dataset directory"
        }
    ],
    "supported_models": [
        "CGCNN_demo",
        "MPNN_demo", 
        "SchNet_demo",
        "MEGNet_demo",
        "GCN_demo",
        "SOAP_demo",
        "SM_demo"
    ],
    "dependencies": [
        "torch",
        "torch-geometric",
        "ase",
        "pymatgen",
        "fastmcp",
        "numpy",
        "scipy",
        "scikit-learn"
    ],
    "python_version": ">=3.8",
    "created_at": "2025-12-03",
    "transport_modes": ["stdio", "http"]
}