Gives coding agents the user's own view and control of overseer.nvim tasks in Neovim
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An MCP server that gives a coding agent the same control over overseer.nvim tasks that you have: list, tail, run, restart, stop, and dispose.

Your agent's shell tool and your overseer task list are separate execution worlds. A dev server the agent starts in its own shell is invisible in the task list, can't be stopped from it, and orphans its process tree when the session ends. Tasks you start get proper teardown. This closes that gap: the agent's long-running commands become real overseer tasks.
v2.1.0)The server speaks stdio and is started by your MCP client. The command is always the same:
The client must run inside a Neovim terminal buffer; that is where the
$NVIM socket it inherits comes from. Tools appear at the next session start,
since MCP servers connect at startup. If the tools never appear, the usual
cause is that $NVIM did not reach the server's environment: the server
registers nothing without it, and some clients strip the environment they
pass to servers.
Then add one line to the generated block in ~/.codex/config.toml:
The env_vars line is required. Codex passes stdio servers a fixed whitelist
of variables (HOME, PATH, TERM and the like), $NVIM is not on it, and
without it the server registers no tools.
Codex also won't reach for the server on its own; see Getting your agent to actually use it.
In ~/.gemini/config/mcp_config.json:
That user-global file is the one to use: the CLI's non-interactive print mode
(agy -p) loads MCP servers from it and from nowhere else; a workspace-level
.agents/mcp_config.json is silently ignored there.
Antigravity also won't reach for the server on its own; see Getting your agent to actually use it.
Or in settings.json:
In opencode.json:
In mcphub's servers config:
The env block is required: mcp-hub does not pass its own environment to the
servers it spawns, so without it the server sees no $NVIM and registers no
tools. The server operates on the Neovim instance that started the hub. A hub
started outside Neovim has no $NVIM to forward, and mcp-hub reports this
server as disconnected with Variable 'NVIM' not found.
LazyVim ships an overseer.nvim extra.
Enable it with :LazyExtras (select editor.overseer), restart Neovim, then
add the server to your MCP client as above. Nothing else is needed; the server
talks to whatever overseer configuration you already have.
| Tool | Purpose |
|---|---|
overseer_list_tasks | Tasks with id, name, status, exit_code, cmd, cwd, timings, origin |
overseer_list_templates | Templates in a directory (npm, go-task, make, just, VS Code) with provider, desc, params |
overseer_tail | A task's output, with status; can block until a pattern appears |
overseer_run | Start a long-running command: a raw cmd array, or a template with params |
overseer_restart | Restart a task by id or name substring |
overseer_stop | Stop a running task |
overseer_dispose | Stop and remove a task from the list |
The last three take force, and refuse a running task you started without it.
Tasks are addressed by numeric id or a case-insensitive name substring, so an
agent can say "dev" instead of tracking ids.
The transport is $NVIM, the RPC socket Neovim exports to every process it
spawns in a terminal buffer. Your MCP client inherits it, and this server, as a
child of that client, inherits it in turn.
Everything else follows from that:
$NVIM set, the server registers seven tools, each one
nvim_exec_lua against overseer over msgpack-RPC.$NVIM unset, it registers nothing and gets out of the way. Running
outside Neovim is a no-op rather than an error.There is no socket discovery: no cwd hashing, no lsof, no
pgrep. Those approaches are structurally broken (a cwd-hash scheme cannot tell
a crashed instance's stale socket from a live one and will unlink working
sockets; pgrep on macOS excludes the caller's own ancestors, which is exactly
the Neovim instance that matters). $NVIM sidesteps both by construction.
All user input (task names, commands, working directories) is passed as msgpack
arguments and arrives in Lua as .... Nothing is ever interpolated into Lua
source, so a task name cannot become code execution.
The task list has two writers now, and only one of them can see it. Two things keep that from biting:
"dev" matches a dozen names in a
monorepo, and silently taking the first is how the wrong thing gets stopped.overseer_list_tasks reports origin
as agent or user, and overseer_stop, overseer_restart and
overseer_dispose refuse a running task you started yourself unless
force is passed. Finished tasks are unguarded, since removing a dead row
costs nothing.The asymmetry is on purpose. A wrong refusal costs one extra call. A wrong stop kills your dev server, loses whatever state it held, and you would have no reason to connect it to the agent.
overseer_run is for commands that do not exit on their own: dev servers,
file watchers, --watch test runs. Short commands that terminate by themselves
should stay on the agent's normal shell tool, where output is available in-band.
Round-tripping a two-second build through start-then-poll is worse.
overseer_list_templates returns whatever overseer's providers discover, verbatim.
Most repos declare nothing runnable and return an empty list. That is a
legitimate answer, not an error. This is why overseer_run takes a raw cmd as
its primary path: a template-only design would be unusable in the common case.
No provider-specific knowledge lives in this server. It does not filter or rewrite results, including help-only entries some task runners expose, because doing so would mean encoding one provider's conventions into a server that must behave identically in a repo that has never heard of it.
What each entry carries:
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/overseer-nvim-mcp)<a href="https://allmcps.com/mcp/overseer-nvim-mcp"><img src="https://allmcps.com/api/badge/overseer-nvim-mcp?style=directory" alt="Overseer Nvim MCP on AllMCPs" /></a>