cd /news/ai-tools/the-only-11-claude-plugins-you-need-… · home topics ai-tools article
[ARTICLE · art-77597] src=pub.towardsai.net ↗ pub= topic=ai-tools verified=true sentiment=· neutral

The Only 11 Claude Plugins You Need in 2026 (I Tested Them All)

Anthropic's Claude plugin marketplace now hosts over 100 plugins, a third built by Anthropic itself, but the terminology remains confusing: skills are knowledge instructions, connectors are live MCP links to external products, and plugins are bundles that combine skills, MCP configs, and commands. After testing plugins for a month, the author identifies the feature-dev plugin as the most useful, as it structures feature requests into plans before coding, reducing missed edge cases.

read10 min views1 publishedJul 28, 2026

The plugin marketplace launched quietly, then exploded into a genuine mess of skills, MCP servers, and connectors with three different names that all mean slightly different things. I spent weeks sorting through it so you don’t have to.

I want to start with the confusion, because I don’t think enough people admit to having it.

The first time I tried to set up a “serious” Claude Code environment, I genuinely couldn’t tell the difference between a skill, a connector, and a plugin. I installed something, it didn’t do what I expected, and I spent twenty minutes convinced I’d broken my setup before realizing I’d actually just misunderstood what the thing I installed was supposed to do in the first place. I remember actually closing my laptop out of mild frustration that evening, which felt a little dramatic in retrospect for what turned out to be a naming problem rather than a real technical failure. If you’ve felt that same low grade confusion scrolling through a marketplace listing, you’re not behind. The terminology genuinely is messy right now, and most of the “must-have plugins” content out there doesn’t bother explaining the difference before diving into a list.

So before the eleven, here’s the version of that explanation I wish someone had given me on day one, because it changes how you should actually evaluate everything on this list.

**A skill is knowledge **instructions Claude loads for a specific kind of work. A connector is access a live MCP link to an external product, with its own permissions and login. A plugin is packaging a bundle that can carry skills, MCP configs, and commands together, installed as a single unit with one command instead of assembled by hand.

Once that clicked for me, evaluating plugins stopped feeling like guesswork.

I gave myself one rule for this whole process: every plugin had to earn its place through real work, not a five minute demo. I run a mix of client development work, some data-heavy scripting, and enough DevOps-adjacent tasks to have opinions about tooling. Over about a month, I installed, used, and in several cases uninstalled plugins from Anthropic’s official marketplace and a couple of well reviewed community ones.

A few of them didn’t survive the month. I won’t spend much time on what got cut, because a list of things that disappointed me is a lot less useful than a list of things that actually held up, but I’ll say this much: more than one plugin looked genuinely impressive in its marketplace description and turned out to add latency to every session without giving me anything I couldn’t already do by just asking Claude directly. That gap between “sounds useful” and “is useful” is basically the entire reason this article exists.

The official marketplace, claude-plugins-official, is the one built directly into Claude Code, and as of earlier this year it held just over 100 plugins a third of them built by Anthropic itself, covering language-server integrations, development workflow tools, and setup utilities. The rest come from partners and the broader community. Installing from it is two commands:

/plugin marketplace add anthropics/claude-plugins-official/plugin install feature-dev@claude-plugins-official

That’s genuinely it. No config file hunting, no copy-pasting MCP server definitions by hand. That simplicity is the entire point of plugins existing as a category, and it’s worth appreciating even before we get into which ones are actually good.

This is the one I use most, without much competition. It structures a feature request into an actual plan before any code gets written scope, approach, and the files likely to be touched instead of jumping straight into implementation. I noticed the difference immediately on a mid-sized feature I’d normally have broken into my own mental checklist. Having that checklist externalized and confirmed before writing a line of code cut down on the “wait, I forgot about that edge case” moments I usually only catch halfway through.

The specific moment that sold me was a feature that touched both a database migration and a public facing API change. My own mental plan had missed that the migration needed to be backwards compatible during the deploy window. The plan this plugin generated flagged that exact concern before I’d written anything, which is precisely the kind of thing a more senior teammate catches in a planning meeting you didn’t realize you needed.

I was skeptical this would just be a wrapper around “review my code,” and for the first few uses, that’s basically what it felt like. It got noticeably better once I started using it on actual pull requests rather than fresh code I’d just written myself, catching things like inconsistent error handling patterns across files that a fresh eyes review tends to find and a same-day self-review tends to miss.

Small, unglamorous, and one of the plugins I’d genuinely miss the most if it disappeared. It generates commit messages that actually describe the change instead of the generic one liners I used to write at 6 PM on a Friday. My commit history has gotten measurably more useful to future-me since installing this, which is a strange thing to feel grateful for but here we are.

I don’t do security work fulltime, which is exactly why this one earned its spot. It flagged an insecure default in a configuration file I’d copy pasted from an old project months ago and never revisited. I wouldn’t have caught it myself, because I’d stopped seeing it, it had become invisible through familiarity, which is exactly the kind of blind spot a second set of eyes, even an AI one, is good for.

This one covers design tokens, layout conventions, and styling constraints specifically tuned for how Claude renders front end work. I noticed the biggest difference in components that needed to feel intentional rather than templated the plugin nudged outputs away from the generic “AI-built landing page” look that’s become instantly recognizable if you’ve spent any time online this year.

If you ever need to build your own MCP server instead of relying on someone else’s, this plugin scaffolds one for you it asks about your use case and sets up either a remote or local server structure accordingly. I used this once to wire up an internal tool at a client’s request, and what would have taken me an afternoon of reading protocol documentation took closer to twenty minutes.

This bundles an MCP server with a set of skills for actually working with MongoDB connecting, exploring collections, and generating queries that follow sensible practices instead of just syntactically valid ones. I tested it against a moderately messy client database, and it navigated the schema without me having to explain the collection structure in detail first, which saved a genuinely tedious onboarding step.

I didn’t expect a project management integration to make this list, but it did. Built on monday’s official MCP connector, it can build a pipeline from scratch, generate a ranked deal briefing, or turn raw meeting notes into actual board updates and every change writes back into monday as a real update, not just a suggestion I’d have to manually copy over. For anyone whose actual bottleneck is updating the board after a meeting instead of having the meeting itself, this quietly removes a chore most people just accept as unavoidable.

Not a plugin in the strict packaging sense this one is a community MCP server you wire in directly but it’s foundational enough that I’m including it anyway. Once connected, Claude can read issues, review diffs, and open pull requests in context, without me pasting code back and forth between a browser tab and a terminal. It’s the connection that made almost everything else on this list feel less like a set of separate tools and more like one continuous workspace.

This is a third-party marketplace addition, not an Anthropic built one, and it’s blunt about its purpose in a way I respect: catching the kind of low quality “AI slop” code that’s become more common as more of any given codebase gets AI-assisted. I ran it against a batch of Claude-generated changes I was about to merge without much scrutiny, and it flagged two spots where the logic technically worked but would’ve been a headache for whoever touched that code next.

The most quietly ambitious plugin on this list. It targets a measurable code-health score on every commit rather than giving vague “looks fine” feedback, using deterministic analysis instead of just an AI opinion about quality. I liked this specifically because it doesn’t rely purely on the model’s judgment it’s checking against actual measured code health metrics, which caught a slowly degrading pattern in a file I’d been incrementally adding to for weeks without noticing the trend.

What I’d Actually Warn You About

A few honest notes before you go install all eleven of these at once, because that’s exactly what I did on day one and it was a mistake.

Stacking too many plugins at once slows things down. I noticed real latency once I had a dozen skills and MCP servers all loaded simultaneously, most of them irrelevant to whatever I happened to be doing in that particular session. There was a stretch of about four days where every single response felt sluggish, and it took me embarrassingly long to connect that to the plugin pile up rather than assuming something was wrong with my connection. Install what you’ll actually use regularly, not everything that looks interesting in the directory.

Trust matters more here than with most tools you’ll install this year. Anything that fetches external content carries a real prompt injection risk, and a plugin bundling an MCP server is still fundamentally granting an external connection some level of access. I only kept plugins from the official marketplace or from vendors I already had an existing relationship with, and I’d genuinely encourage the same caution rather than installing anything with a compelling sounding description.

The “same name, different product” trap is real. Claude Code plugins and Claude.ai’s web-based features are architecturally different things, even when they share branding. If you’re hunting for something you read about and can’t find it where you expected, that’s very possibly why you’re looking in the wrong product, not doing anything wrong.

If I had to cut this list down to the three I’d install on a brand-new machine before anything else, it’d be feature-dev, commit commands, and CodeRabbit one for planning, one for the boring daily grind, and one for catching my own sloppiness before it becomes someone else’s problem to untangle. Everything else on this list earned its place through actual repeated use, but those three are the ones I’ve genuinely missed on the rare occasion I’ve had to work without them.

The plugin ecosystem is still young enough that this list will probably look different in six months, and I mean that as a genuine caveat, not a hedge. New official plugins are still being added regularly, and the community marketplace is growing fast enough that something better than what’s on this list might exist by the time you’re reading it. Treat this as where things stand right now, not a permanent ranking.

Great developers don’t collect tools, they build workflows that solve real problems. These eleven Claude plugins earned their place by saving time, improving code quality, and removing everyday friction. If even one of them becomes part of your daily routine, this guide has done its job.

What’s actually in your setup right now did I miss something you’d fight for? I’d genuinely like to know in the comments, especially if it’s a community plugin I haven’t come across yet.

If this was useful, a clap helps more people find it and if you want a step-by-step setup guide for wiring up your first MCP server from scratch, let me know and I’ll write that one next.

The Only 11 Claude Plugins You Need in 2026 (I Tested Them All) was originally published in Towards AI on Medium, where people are continuing the conversation by highlighting and responding to this story.

── more in #ai-tools 4 stories · sorted by recency
── more on @anthropic 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/the-only-11-claude-p…] indexed:0 read:10min 2026-07-28 ·