Skip to main content
// section · directory · plugins

AI Coding Plugins

Extend your development environment with AI-powered plugins, from IDE extensions to browser tools and backend integrations. Every listing is curated for quality and active maintenance.

Curated · Updated 2026
4 plugin categories·10 reviews & guides
// section · how · use this hub

How to Use This Hub

Plugins are grouped by where they run. If you spend most of your time in VS Code or JetBrains, start with IDE & Editor Plugins. If you prefer browser-based development, check Browser & Cloud Plugins. Each listing links to a full review with pros, cons, and workflow guidance.

// section · plugins · by surface
// section · deep · dive

How AI Coding Plugins Work in 2026

The Plugin Layer Is Where AI Coding Gets Personal

Cursor and Claude Code ship with a default AI configuration that works for most users. The plugin layer is how you make it work for you. A code-review plugin (CodeRabbit, Snyk Code) gates every PR. An MCP server connects the agent to your database. A custom rule file teaches the agent your codebase conventions. Without plugins the AI is generic; with them, it inherits your team's standards. The biggest velocity gains in 2026 come from this layer, not from picking a different base tool.

MCP Changed What 'Plugin' Means

Until late 2024, an AI coding plugin meant a VS Code extension, a JetBrains plugin, or a browser tool. Anthropic's Model Context Protocol shifted the model. An MCP server runs anywhere (local Docker, remote machine, cloud function) and exposes tools that any MCP-compatible agent can call. Install a Postgres MCP server once and Claude Code, Cursor, Windsurf, and every other MCP client can query your database. The plugin is no longer tied to a specific IDE; it travels with the protocol. Expect this pattern to consume most of the new plugin development in 2026.

Security, Permissions, and the Supply Chain

AI coding plugins ask for more permissions than ordinary extensions: filesystem access, terminal commands, network calls, sometimes API keys to other services. Most are trustworthy; the tail is not. Practical hygiene: install only from sources you'd install a regular dependency from, prefer open-source plugins you can audit, scope API tokens narrowly per plugin, and review the plugin's permission requests before the first run. The most common failure mode is not malice but careless permission scope, plugins that ask for more access than they need and then become a single point of compromise.

When to Build a Plugin vs Buy One

Most teams should buy. The exceptions are narrow: deep integrations with internal tools that no public plugin will ever cover, security-sensitive workflows where the data can't leave your network, and team-specific conventions that need to be enforced across hundreds of repos. For everything else, the publicly available plugins are faster to install, cheaper to maintain, and more battle-tested than anything you'll build in a sprint. The right question is usually 'which existing plugin handles 80% of this?' before 'how do I build the perfect one?'

// section · faq · plugins

Frequently Asked Questions

What counts as an AI coding plugin?

An AI coding plugin is a software extension that adds AI-powered capabilities to an existing development environment. This includes VS Code extensions, JetBrains plugins, browser-based tools, and cloud integrations that enhance your coding workflow with AI assistance.

How are plugins different from standalone AI tools?

Plugins extend an existing environment (your IDE, browser, or CI pipeline). Standalone tools like Cursor or Windsurf are complete environments built around AI from the ground up. Some tools blur this line, for example, Continue.dev is a plugin that adds Cursor-like features to VS Code.

How does curation work on this page?

Every plugin listed here meets our inclusion criteria: it must be directly relevant to building software, have a clear primary use-case, have accessible documentation, and show evidence of active maintenance. We exclude abandoned, vague, or low-trust entries.

What is MCP and how does it relate to plugins?

MCP (Model Context Protocol) is Anthropic's open standard for letting AI agents talk to external tools and services. An MCP server is effectively a plugin for the AI agent itself: install once and Claude Code, Cursor, or any MCP-compatible tool can use it. The plugin model is shifting from IDE-specific extensions toward MCP servers that work across tools.

Are AI plugins safe to install?

Treat them like any other software dependency. Install only from sources you trust, read the permissions the plugin requests (filesystem access, network calls, API keys), and prefer open-source plugins where you can audit the code. The AI-coding plugin space is young, and supply-chain hygiene matters more than it does for established categories.

Do I need a plugin if I'm already using Cursor or Claude Code?

Sometimes. Cursor and Claude Code ship with AI built-in, so you don't need a baseline AI plugin. You may still want extension plugins for specific tasks: PR review (CodeRabbit), security scanning (Snyk), or MCP servers that connect to your databases, APIs, and internal tools. Plugins add capability beyond what the base agent provides.

What's the difference between a plugin and a tool integration?

Plugins live inside the IDE or browser and run when the host process runs. Integrations are typically API connections between two products (Cursor pulling from your Jira, Claude Code writing to your Linear). Plugins are local, integrations are remote. The distinction blurs with MCP, where a remote server can act like a local plugin.