cclsp
by ktnyt
Claude Code LSP: enhance your Claude Code experience with non-IDE dependent LSP integration.
# Add to your Claude Code skills
git clone https://github.com/ktnyt/cclspcclsp - not your average LSP adapter
cclsp is a Model Context Protocol (MCP) server that seamlessly integrates LLM-based coding agents with Language Server Protocol (LSP) servers. LLM-based coding agents often struggle with providing accurate line/column numbers, which makes naive attempts to integrate with LSP servers fragile and frustrating. cclsp solves this by intelligently trying multiple position combinations and providing robust symbol resolution that just works, no matter how your AI assistant counts lines.
Setup & Usage Demo
https://github.com/user-attachments/assets/52980f32-64d6-4b78-9cbf-18d6ae120cdd
Table of Contents
- Why cclsp?
- Features
- 📋 Prerequisites
- ⚡ Setup
- 🚀 Usage
- 🛠️ Development
- 🔧 MCP Tools
- 💡 Real-world Examples
- 🔍 Troubleshooting
- 🤝 Contributing
- 📄 License
Why cclsp?
When using AI-powered coding assistants like Claude, you often need to navigate codebases to understand symbol relationships. cclsp bridges the gap between Language Server Protocol capabilities and Model Context Protocol, enabling:
- 🔍 Instant symbol navigation - Jump to definitions without manually searching
- 📚 Complete reference finding - Find all usages of functions, variables, and types
- ✏️ Safe symbol renaming - Rename across entire codebases with confidence
- 🌍 **Universal lang...
