chatmcp.yaml•933 B
params:
type: object
properties:
# No required authentication keys for this MCP server
required: []
rest:
name: suncture-healthcare
port: 9593
endpoint: /rest
npx:
command: |
MCP_MODE=stdio npx -y suncture-healthcare-mcp
config: |
{
"mcpServers": {
"suncture-healthcare": {
"command": "npx",
"args": [
"-y",
"suncture-healthcare-mcp"
],
"env": {
"MCP_MODE": "stdio"
}
}
}
}
docker:
command: |
docker run -i --rm -e MCP_MODE=stdio mcp/suncture-healthcare
config: |
{
"mcpServers": {
"suncture-healthcare": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"MCP_MODE=stdio",
"mcp/suncture-healthcare"
],
"env": {}
}
}
}