fff.nvim
Frecency-aware file search built for both Neovim devs and AI agents
Expert verdict
Ship
3-1The Panel's Take
fff.nvim is a Rust-built file search toolkit with a dual identity: a Neovim plugin for human developers and an MCP server for AI coding agents. The core insight is that both humans and AI models need context-relevant file discovery, and the same algorithm serves both use cases well. The scoring system combines frecency (frequency + recency), git status (modified/staged files score higher), file size (prefers smaller files that fit in context), and definition match (files containing definitions of symbols you're searching). The result is that the most likely relevant file surfaces first, reducing the token cost of codebase exploration for AI agents by avoiding the need to open and read many irrelevant files. The MCP integration is the breakout feature — AI agents using tools like Claude Code or Cursor can invoke fff.nvim's search capabilities directly, getting curated file suggestions instead of brute-forcing directory traversal. fff.nvim trended at #5 on GitHub today with 767 new stars, suggesting strong interest from the developer community that runs both human and AI development workflows.
Share this verdict
fff.nvim verdict: SHIP 🚀 3 ships · 1 skip from the expert panel Full review: shiporskip.io/tool/fff-nvim-ai-file-search-mcp
Weekly AI Tool Verdicts
Get the next verdict in your inbox
7 critics review a new AI tool every day. Weekly digest — free.
Similar Products
Compare fff.nvim with Others
Looking for fff.nvim alternatives?
Compare fff.nvim with every other Developer Tools tool reviewed by our panel.
See all Developer Tools alternativesEmbed this verdict
Tool makers can add a live ShipOrSkip badge to their site. Badge loads track impressions; clicks route back to this review.
<a href="https://shiporskip.io/api/badge-click/fff-nvim-ai-file-search-mcp" target="_blank" rel="noopener"><img src="https://shiporskip.io/api/badge/fff-nvim-ai-file-search-mcp" alt="fff.nvim Ship verdict on ShipOrSkip" width="360" height="90" /></a>[](https://shiporskip.io/api/badge-click/fff-nvim-ai-file-search-mcp)<iframe src="https://shiporskip.io/embed/fff-nvim-ai-file-search-mcp" title="fff.nvim ShipOrSkip verdict" width="360" height="260" style="border:0;border-radius:16px;max-width:100%;" loading="lazy"></iframe>The reviews
“The frecency + git status scoring is exactly the heuristic I apply manually when navigating large codebases. Giving AI agents access to that same signal via MCP is a practical efficiency gain — fewer context tokens wasted on files that aren't what the model needs.”
“Frecency works well for personal workflows but can mislead AI agents on shared repos where your personal access patterns don't reflect what's architecturally important. The 'skip large files' heuristic is also a double-edged sword — some critical config files are large for good reason.”
“This is an early example of tooling built simultaneously for humans and AI agents — a design pattern we'll see everywhere as coding workflows become hybrid. The shared context between how a human navigates a repo and how their AI agent does will be a meaningful collaboration advantage.”
“For creative projects with complex file structures — design systems, multi-locale content, large asset libraries — intelligent file search that understands recency and relevance is a genuine workflow improvement over fuzzy find.”