Locus
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@LocusFind all references toUserService.authenticate"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Locus
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.
Why you might want this
Find the real definition — Your agent can locate
UserService.authenticateeven when it is re-exported, overloaded, or buried in a large file — not just wherever the name appears as text.See who calls what — Before a refactor, list every reference to a function or class so nothing breaks silently.
Read types and docs — Ask what a variable or parameter actually is, without guessing from variable names.
Catch errors early — Surface compiler and linter problems right after an edit, instead of waiting for a full test run.
Related MCP server: codeweave-mcp
Who this is for
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.
Get started in 5 minutes
Install a language server (if you do not have one yet) — for TypeScript/JavaScript:
npm install -g typescript-language-server typescript. See Installing language servers for Python, Go, and Rust.Run one-time setup in your project folder:
npx @paladini/locus-mcp init npx @paladini/locus-mcp checkAdd Locus to your agent's MCP config — MCP is how AI hosts call helper tools like Locus; copy a block from Copy-paste configs below and set
cwdto your project's absolute path.Reload MCP — restart Cursor, reload Codex, or reopen Claude Code so the new server appears.
Try a prompt — ask your agent: "Use Locus to find where
UserServiceis defined and list all references." If it calls thelocateandrefstools, you are set.
Requirements: Node.js 22+. Language servers on your PATH for the languages you use.
Copy-paste configs
Your agent host spawns Locus automatically — you never run serve by hand during normal use.
Cursor
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"
}
}
}Codex
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.
Claude Code
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
Example prompts to try
Paste these into your agent after Locus is configured:
"Find where
UserServiceis defined. Use Locuslocate, not grep.""Before we rename
parseConfig, use Locus to list every file that calls it.""What type does
response.datahave insrc/api/handler.ts? Use Locushover.""After your edits, run Locus diagnostics on the files you changed and fix any errors."
"Check Locus
status— are the language servers ready?"
What Locus does NOT do
Edit your code — Your agent's Edit/Write tools still apply changes. Locus only reads structure and diagnostics.
Replace grep — Grep is still best for log lines, config keys, comments, and plain text search.
Remember things between sessions — No agent memory store; each session starts fresh.
Run refactors for you —
renamepreviews impact; your agent applies the actual edits.Expose every LSP feature — Six focused tools only, not a full IDE protocol passthrough.
Compete with large toolkits — If you need symbolic body replacement, memory, and 40+ languages in one MCP stack, consider Serena instead.
Tools at a glance
Tool | What it does |
Find a symbol by name or list symbols in a file | |
All references or implementations at a position | |
Type information and documentation | |
File or workspace errors and warnings | |
Language-server readiness and missing binaries | |
Preview a rename (dry-run; apply via your agent) |
Learn more
Guide | Description |
Step-by-step setup, workflows, troubleshooting | |
First-time setup — no LSP knowledge required | |
Do I need to be a programmer? What's MCP? | |
Fit, scope, and when to pick alternatives | |
Locus vs Serena, bridges, and grep | |
All six MCP tools with examples | |
| |
Lightweight positioning and quick overview |
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceA comprehensive MCP server providing tools for AI agents to interact with code, including reading symbols, importing modules, replacing text, and sending OS notifications.Last updated33210MIT
- Alicense-qualityBmaintenanceAn MCP server that gives AI agents structured code understanding and precise code intelligence via local indexing of AST, call graphs, and semantic search.Last updated964Apache 2.0
- Alicense-qualityAmaintenanceMCP server for local-first code intelligence, providing structural code graph, semantic search, and impact analysis to AI agents.Last updated1MIT
- Alicense-qualityCmaintenanceAn MCP server that provides semantic code intelligence by pre-indexing codebases, enabling AI agents to query symbol relationships and code structure directly, reducing costs and tool calls.Last updated77,800MIT
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/paladini/locus-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server