Universal MCP to LSP bridge - expose Language Server Protocol capabilities as MCP tools for AI agents
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcpls": {
"command": "cargo",
"args": [
"run",
"--",
"mcpls"
]
}
}
}
Run in terminal:
claude mcp add mcpls cargo run -- mcpls
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcpls": {
"command": "cargo",
"args": [
"run",
"--",
"mcpls"
]
}
}
}