@opticlm/lsp-mcp
v0.1.2
Published
MCP server exposing a Language Server's capabilities to agents as a headless editor
Readme
lsp-mcp
An MCP server that exposes a single Language Server Protocol server to agents as a headless editor.
lsp-mcp starts the language server you provide, keeps its document state in sync with the workspace, and exposes the language server's capabilities through MCP tools and resources. It is written in TypeScript and Effect.
Features
- stdio and Streamable HTTP MCP transports
- Diagnostics exposed both as a tool and subscribable MCP resources
- Preview-by-default edits for rename and formatting, with explicit disk application
- Language-server crash supervision, restart backoff, and document reopening
- Initialization options, workspace settings, language-id mappings, and open-document capacity configuration
Underlying techniques:
- On-demand document opening, disk change detection, and an LRU cache of open documents
- 1-based line and column positions designed for agent-facing use
- Capability-aware tool registration: unsupported LSP features are not advertised
Requirements
- Node.js 26+
- pnpm 12.4.2+
- An installed language server executable
Installation
pnpm install
pnpm buildFrom a checkout, invoke the built server with node dist/main.mjs. Use pnpm dev to run the TypeScript source directly during development.
Usage
The general form is:
node dist/main.mjs [lsp-mcp options] -- <language-server> [language-server args...]The -- separates lsp-mcp options from the executable and arguments passed to the language server.
stdio
stdio is the default transport and is suitable for MCP clients that launch a local server process:
node dist/main.mjs --root /path/to/project -- typescript-language-server --stdioFor example, an MCP client configuration can point at the checkout like this:
{
"mcpServers": {
"typescript": {
"command": "node",
"args": [
"/path/to/lsp-mcp/dist/main.mjs",
"--root",
"/path/to/project",
"--",
"typescript-language-server",
"--stdio"
]
}
}
}Streamable HTTP
Run the MCP endpoint on a local port with --http:
node dist/main.mjs --http 9010 --root ./crate -- rust-analyzerThe endpoint is available at:
http://localhost:9010/mcpConfiguration examples
# Pass JSON initialization options to the language server.
node dist/main.mjs \
--init-options '{"typescript":{"useInferredProjectPerProjectRoot":true}}' \
-- typescript-language-server --stdio
# Serve workspace/configuration and didChangeConfiguration with JSON settings.
node dist/main.mjs \
--settings '{"gopls":{"staticcheck":true}}' \
-- gopls
# Add a file-extension to language-id mapping.
node dist/main.mjs --language vue=vue --root ./web -- vue-language-server --stdio
# Keep more documents open, and always restart a crashed language server.
node dist/main.mjs --open-documents 64 --restart always -- clangdDevelopment
pnpm test # Run the Vitest suite, including the fixture LSP integration tests
pnpm check # Type-check without emitting JavaScript
pnpm lint # Format and lint with BiomeThe main source layout is:
src/Model.ts Agent-facing schemas and 1-based positions
src/Tools.ts MCP tool definitions and capability gating
src/Resources.ts MCP resources and notifications
src/Server.ts Effect layer composition and transports
src/main.ts CLI entry point
src/lsp/ LSP process, document, diagnostic, and editor bridge
test/ Unit and integration tests with a fixture language serverThe vscode-* packages are intentionally confined to src/lsp/; the rest of the application uses the agent-facing schemas and Effect services.
License
MIT
