cursor-eff
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., "@cursor-effsearch for the rate limiter and outline the file that contains it"
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.
cursor-eff
Token-efficiency toolkit for Cursor: a local MCP server + steering rules that cut how much context Cursor's agent burns, regardless of which model you use.
Why
On a Cursor subscription, quota drains through three habits: the agent reading whole files to find things, re-exploring the repo every chat, and long conversations re-sending their entire history each turn. cursor-eff attacks all three at the source by giving the agent cheaper primitives and rules that make it prefer them.
Related MCP server: nimble
What the agent gets
Tool | Replaces | Typical saving |
| reading whole files to find something | ~10–50x |
| full file reads for orientation | ~10x |
| full file reads for a known region | proportional |
| recursive directory exploration, re-done every chat | cached, 10 min TTL |
| continuing a bloated 100-message chat | fresh chat seeded with ~1 page |
Plus a rules file (.cursor/rules/efficiency.mdc) that steers the agent to use them, avoid re-reads, stay terse, and suggest fresh chats.
Setup
Requires Node.js 18+. Works on Windows, macOS, and Linux (ripgrep binaries ship with the install).
From npm (once published):
npm install -g cursor-eff
cursor-eff register # once — adds the MCP server to ~/.cursor/mcp.json
cursor-eff init <project> # per project — installs rules + .cursorignore entriesFrom source:
git clone https://github.com/aclermont318-sys/cursor-eff.git && cd cursor-eff
npm install && npm run build
node dist/cli.js register
node dist/cli.js init <project>Restart Cursor afterwards. Verify under Settings → MCP that cursor-eff shows 5 tools.
init never overwrites an existing efficiency.mdc (so your project-specific edits survive); pass --force to reset it to the stock template.
Daily use
Nothing changes — the agent uses the tools on its own. Two habits multiply the savings:
When the agent says "state saved, start a fresh chat", do it: open a new chat and say "read .cursor/handoffs/latest.md and continue".
Keep one chat per task, not one chat per day.
Development
npm run build # compile
npm run smoke # end-to-end MCP stdio test (10 checks)Limits (by design)
Cursor's prompt pipeline is closed — this tool cannot rewrite what Cursor sends for its subscription models. It reduces what the agent asks for, which is where most waste is. Savings depend on the model following the rules; frontier models follow tool-preference rules well.
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
- AlicenseAqualityAmaintenanceMCP server that reduces token consumption in AI coding assistants by up to 90% via structural reads, PreToolUse hooks, and tp-\* subagents.Last updated257884MIT
- Alicense-qualityDmaintenanceA token-efficient MCP server that reduces context window bloat by lazy loading tool descriptions and proxying calls through three simple tools, with a dashboard for managing connections.Last updated378MIT
- AlicenseAqualityAmaintenanceAn MCP server giving coding agents context-window-aware code search and safe, atomic multi-file edits — built to cut token usage on large codebases without sacrificing correctness.Last updated3685MIT
- Alicense-qualityBmaintenanceAn MCP server that reduces token usage by injecting graph-ranked repo maps, decision logs, and diff-only output into AI coding tool requests.Last updated1MIT
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
Local-first RAG engine with MCP server for AI agent integration.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
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/aclermont318-sys/cursor-eff'
If you have feedback or need assistance with the MCP directory API, please join our Discord server