Back to MCP Servers

Language

MCP Language Server helps MCP enabled clients navigate codebases more easily by giving them access to semantic tools like get definition, references, rename, and diagnostics.

developer-tools

Installation

npx -y mcp-language-server

Configuration

{
  "mcpServers": {
    "mcp-language-server": {
      "command": "npx",
      "args": ["-y", "mcp-language-server"]
    }
  }
}

How to use

  1. Run the installation command above (if needed)
  2. Open your Claude Code settings file (~/.claude/settings.json)
  3. Add the configuration to the mcpServers section
  4. Restart Claude Code to apply changes
View source on GitHub