Hello, I would like to know if it is possible to have an MCP server without needing a command in the claude_desktop_config.json file.
I created a remote server that runs on a VPS and I would like to be able to connect to Claude Desktop without having to install anything on my PC.
server without authentication
{
"mcpServers": {
"todos": {
"url": "http://localhost:8080"
}
}
}
server with authentication 1
{
"mcpServers": {
"todos": {
"url": "https://my-server.com",
"auth": {
"username": "user",
"password": "password"
}
}
}
}
server with authentication 2
{
"mcpServers": {
"todos": {
"url": "https://my-server.com",
"auth": {
"token": "asdasdasdasd",
}
}
}
}
thank you for your attention
Hello, I would like to know if it is possible to have an MCP server without needing a command in the claude_desktop_config.json file.
I created a remote server that runs on a VPS and I would like to be able to connect to Claude Desktop without having to install anything on my PC.
server without authentication
{ "mcpServers": { "todos": { "url": "http://localhost:8080" } } }server with authentication 1
{ "mcpServers": { "todos": { "url": "https://my-server.com", "auth": { "username": "user", "password": "password" } } } }server with authentication 2
{ "mcpServers": { "todos": { "url": "https://my-server.com", "auth": { "token": "asdasdasdasd", } } } }thank you for your attention