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
2 changes: 1 addition & 1 deletion mcp-registry/servers/hustcc-mcp-mermaid.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"homepage": "https://github.com/hustcc/mcp-mermaid",
"author": {
"name": "hustcc",
"name": "hustcc"
},
"license": "MIT",
"categories": [
Expand Down
94 changes: 94 additions & 0 deletions mcp-registry/servers/optimade-mcp-server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
{
"name": "optimade-mcp-server",
"display_name": "OPTIMADE MCP Server",
"description": "A Model Context Protocol (MCP) tool for querying Optimade-compatible material databases, fully configurable custom filter presets and provider endpoints.",
"repository": {
"type": "git",
"url": "https://github.com/dianfengxiaobo/optimade-mcp-server"
},
"author": {
"name": "dianfengxiaobo"
},
"license": "MIT",
"categories": [
"Dev Tools"
],
"tags": [
"optimade",
"materials-science"
],
"arguments": {
"HTTP_PROXY": {
"description": "Specify it if you need to use a http proxy.",
"required": false,
"example": "http://127.0.0.1:8080"
},
"HTTPS_PROXY": {
"description": "Specify it if you need to use a https proxy.",
"required": false,
"example": "https://127.0.0.1:8080"
}
},
"tools": [
{
"name": "query_optimade",
"description": "Query OPTIMADE providers with a custom filter.\n• If baseUrls omitted, falls back to default providers.\n• Runs lint first: syntax errors block query; non‑white‑list fields only warn.",
"inputSchema": {
"type": "object",
"properties": {
"filter": {
"type": "string"
},
"baseUrls": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"filter"
]
}
},
{
"name": "lint_filter",
"description": "Return 'ok', 'warn: …', or 'syntax error: …' for a filter string.",
"inputSchema": {
"type": "object",
"properties": {
"filter": {
"type": "string"
}
},
"required": [
"filter"
]
}
},
{
"name": "list_providers",
"description": "Fetch global public OPTIMADE provider URLs via OptimadeClient.",
"inputSchema": {
"type": "object",
"properties": {}
}
}
],
"resources": [],
"prompts": [],
"installations": {
"uvx": {
"type": "uvx",
"command": "uvx",
"args": [
"run",
"optimade-mcp-server"
],
"description": "Run the server using the uvx package manager.",
"recommended": true
}
},
"is_official": false,
"is_archived": false
}