Server data from the Official MCP Registry
Lightweight MCP server for LSP code intelligence — symbol lookup, refs, types, diagnostics.
Lightweight MCP server for LSP code intelligence — symbol lookup, refs, types, diagnostics.
Valid MCP server (2 strong, 4 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
17 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-paladini-locus-mcp": {
"args": [
"-y",
"@paladini/locus-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Locus gives your AI coding agent a map of your codebase. Whether you write code yourself or work through Cursor, Codex, or Claude Code, Locus connects your agent to the same go-to-definition and find-references intelligence your IDE uses — through MCP (Model Context Protocol), a standard plug-in layer for AI tools. Configure it once; your agent uses six small tools to find symbols, trace callers, read types, and catch errors before you run tests.
UserService.authenticate even when it is re-exported, overloaded, or buried in a large file — not just wherever the name appears as text.Locus is for AI-first builders: developers, indie hackers, and PMs who work through an agent and want it to understand code structure, not just search strings.
It fits when your agent already edits files well (Cursor's Edit tool, Claude Code, Codex) and you want to add semantic navigation on top — without turning your setup into a second IDE inside MCP.
It is not for people who want symbolic editing, agent memory, or a full refactoring toolkit inside MCP. For that, look at Serena — a broader option that does more inside the protocol. Locus stays intentionally small: six tools, npx install, complements your host.
npm install -g typescript-language-server typescript. See Installing language servers for Python, Go, and Rust.npx @paladini/locus-mcp init
npx @paladini/locus-mcp check
cwd to your project's absolute path.UserService is defined and list all references." If it calls the locate and refs tools, you are set.Requirements: Node.js 22+. Language servers on your PATH for the languages you use.
Your agent host spawns Locus automatically — you never run serve by hand during normal use.
Create or edit .cursor/mcp.json in your project (or global Cursor MCP settings):
{
"mcpServers": {
"locus": {
"command": "npx",
"args": ["-y", "@paladini/locus-mcp", "serve"],
"cwd": "/absolute/path/to/your/project"
}
}
}
Add to ~/.codex/config.toml (global) or .codex/config.toml (project):
[mcp_servers.locus]
command = "npx"
args = ["-y", "@paladini/locus-mcp", "serve"]
cwd = "/absolute/path/to/your/project"
For a project-scoped config, you can use cwd = "." instead.
Add to Claude Code MCP settings:
{
"mcpServers": {
"locus": {
"command": "npx",
"args": ["-y", "@paladini/locus-mcp", "serve"],
"cwd": "/absolute/path/to/your/project"
}
}
}
More detail (local dev, troubleshooting): docs/usage.md
Paste these into your agent after Locus is configured:
UserService is defined. Use Locus locate, not grep."parseConfig, use Locus to list every file that calls it."response.data have in src/api/handler.ts? Use Locus hover."status — are the language servers ready?"rename previews impact; your agent applies the actual edits.| Tool | What it does |
|---|---|
locate | Find a symbol by name or list symbols in a file |
refs | All references or implementations at a position |
hover | Type information and documentation |
diagnostics | File or workspace errors and warnings |
status | Language-server readiness and missing binaries |
rename | Preview a rename (dry-run; apply via your agent) |
| Guide | Description |
|---|---|
| Usage guide | Step-by-step setup, workflows, troubleshooting |
| Getting started | First-time setup — no LSP knowledge required |
| FAQ | Do I need to be a programmer? What's MCP? |
| Who is Locus for? | Fit, scope, and when to pick alternatives |
| Comparison | Locus vs Serena, bridges, and grep |
| Tools reference | All six MCP tools with examples |
| Configuration | locus.toml, locus.json, language servers |
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.