Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions servers/convexhull/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# ConvexHullMCP Server

A tool to build convexhull and check materials thermal stability

##Overview

This MCP server could build convex hull for given structures and check it corresponding thermal stability

## How to cite?

```bibtex
@software{ConvexHullMCP,
title = {ConvexHullMCP},
author = {AI4Scient},
year = {2025}
}
```
6 changes: 6 additions & 0 deletions servers/convexhull/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "SuperconductorServer",
"description": "Superconductor critical temperature prediction",
"author": "@liuyuxiang92",
"category": "materials"
}
16 changes: 16 additions & 0 deletions servers/convexhull/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[project]
name = "superconductor-mcp-server"
version = "0.1.0"
description = "Superconductor critical temperature prediction"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"dpdata",
"numpy",
"ase",
"pymatgen",
"deepmd-kit",
"pandas",
"mcp",
"fastmcp"
]
Loading