We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jmagar/homelab-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"$schema": "./config.schema.json",
"_comment": "This file is OPTIONAL. Synapse-MCP auto-loads hosts from ~/.ssh/config",
"_comment2": "Manual config takes precedence over SSH config for hosts with same name",
"_comment3": "Priority: Manual config > SYNAPSE_HOSTS_CONFIG env > SSH config > Local socket",
"hosts": [
{
"name": "local",
"host": "localhost",
"protocol": "ssh",
"dockerSocketPath": "/var/run/docker.sock",
"tags": ["local", "development"]
},
{
"name": "remote-server",
"host": "192.168.1.100",
"port": 22,
"protocol": "ssh",
"sshUser": "admin",
"sshKeyPath": "~/.ssh/id_rsa",
"dockerSocketPath": "/var/run/docker.sock",
"tags": ["production", "remote"]
},
{
"name": "cloud-host",
"host": "server.example.com",
"port": 22,
"protocol": "ssh",
"sshUser": "root",
"sshKeyPath": "~/.ssh/id_ed25519",
"dockerSocketPath": "/var/run/docker.sock",
"tags": ["cloud", "production"]
},
{
"name": "docker-api-host",
"host": "docker.local",
"port": 2375,
"protocol": "http",
"tags": ["api-only"]
}
]
}