-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathnemad.json
More file actions
70 lines (70 loc) · 2.15 KB
/
Copy pathnemad.json
File metadata and controls
70 lines (70 loc) · 2.15 KB
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
{
"name": "nemad",
"display_name": "NEMAD Materials Database",
"description": "MCP server for accessing the North East Materials Database (NEMAD) API to search materials by elements and chemical formulas in magnetic, thermoelectric, and superconductor databases.",
"repository": {
"type": "git",
"url": "https://github.com/pathintegral-institute/mcp.science"
},
"homepage": "https://github.com/pathintegral-institute/mcp.science/tree/main/servers/nemad",
"author": {
"name": "Path Integral Institute"
},
"license": "MIT",
"categories": ["Knowledge Base"],
"tags": [
"materials",
"database"
],
"arguments": {
"NEMAD_API_KEY": {
"description": "API key for accessing NEMAD database from nemad.org",
"required": true,
"example": "your-nemad-api-key"
}
},
"tools": [
{
"name": "nemad_search",
"description": "Search materials by elements in magnetic, thermoelectric, and superconductor databases"
},
{
"name": "nemad_formula_search",
"description": "Search materials by exact chemical formula"
},
{
"name": "nemad_read_results",
"description": "Read specific ranges of search results from previous queries"
}
],
"installations": {
"uvx": {
"type": "uvx",
"command": "uvx",
"args": ["mcp-science", "nemad"],
"env": {
"NEMAD_API_KEY": "${NEMAD_API_KEY}"
},
"description": "Install from GitHub using uvx",
"recommended": true
}
},
"examples": [
{
"title": "Search magnetic materials by elements",
"description": "Find magnetic materials containing iron and oxygen",
"prompt": "Search for magnetic materials containing iron and oxygen"
},
{
"title": "Search by chemical formula",
"description": "Find materials with exact chemical formula",
"prompt": "Find materials with chemical formula Fe2O3"
},
{
"title": "Search thermoelectric materials",
"description": "Find thermoelectric materials with specific elements",
"prompt": "Search thermoelectric materials containing bismuth and tellurium"
}
],
"is_official": true
}