sysrex/selin-mcp-server
3.1
If you are the rightful owner of selin-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Model Context Protocol (MCP) server facilitates communication between different components of a distributed system, allowing for efficient data exchange and process management.
Add to your Claude Desktop config:
{
"mcpServers": {
"selin-mcp": {
"command": "ssh",
"args": [
"sysrex@your-server.com",
"-p", "2222",
"/path/to/selin-mcp-server",
"-config", "/app/configs/production.yaml"
]
}
}
}
Or for HTTP transport:
{
"mcpServers": {
"selin-mcp": {
"command": "curl",
"args": [
"-X", "POST",
"https://your-server.com:8080/mcp/ws"
]
}
}
}