back to top
More
    HomeNewsCursor Now Lets You Extend Its AI Agent With One-Click Marketplace Plugins

    Cursor Now Lets You Extend Its AI Agent With One-Click Marketplace Plugins

    Published on

    Claude’s New Web Search Filter Writes Code to Cut Noise, The Numbers Prove It Works

    Web search is one of the most token-intensive operations an AI agent performs and most of those tokens are wasted. Anthropic’s updated web search and web fetch tools for Claude now address this at the

    Key Takeaways

    • Cursor 2.5, released February 17, 2026, introduces a plugin marketplace bundling MCP servers, skills, subagents, hooks, and rules into single installs
    • Launch partners include Amplitude, AWS, Figma, Linear, Stripe, Cloudflare, Vercel, Databricks, Snowflake, and Hex spanning design, payments, infrastructure, and analytics
    • Developers install plugins directly inside the editor with /add-plugin or by browsing cursor.com/marketplace
    • Async subagents now run with lower latency, can spawn sub-subagents, and execute in parallel enabling multi-file features, large refactors, and complex bug fixes

    Cursor just collapsed the entire product development lifecycle into a single editor and the mechanism is a new plugin architecture that ships with Cursor 2.5. Released February 17, 2026, the update adds an official marketplace where developers install plugins connecting Figma designs, Stripe payments, AWS infrastructure, and production analytics without switching tools. This article breaks down exactly how the plugin system works, what each launch partner’s integration delivers, and what the new sandbox and async subagent capabilities change for development teams.

    What the Cursor Marketplace Is

    The Cursor Marketplace is a curated distribution platform for plugins that extend Cursor’s AI agent with external tools and domain-specific knowledge. Each plugin is a bundled package not a loose script that combines one or more of five distinct primitives: MCP servers, skills, subagents, hooks, and rules. This single-install packaging means one plugin can simultaneously connect Cursor to an external API, enforce coding standards, and enable parallel task execution.

    What is the Cursor Marketplace?
    The Cursor Marketplace is the official plugin distribution platform for Cursor, the AI code editor developed by Anysphere, Inc. Launched February 17, 2026 alongside Cursor 2.5, it allows developers to install prebuilt plugins bundles of MCP servers, skills, subagents, hooks, and rules to extend agent capabilities. Browse at cursor.com/marketplace or install via /add-plugin in the editor.

    Cursor launched the marketplace with a deliberately curated set of verified partners rather than an open submission directory. The initial partners Amplitude, AWS, Figma, Linear, Stripe, Cloudflare, Vercel, Databricks, Snowflake, and Hex were selected to cover the full product development lifecycle from planning through deployment and analytics.

    The Five Plugin Primitives

    Understanding what a Cursor plugin contains is more useful than knowing which logos appear in the marketplace. Each plugin can bundle any combination of these five components:

    • Skills – domain-specific prompts and code that agents can discover and run automatically
    • Subagents – specialized agents that allow Cursor to complete tasks in parallel
    • MCP servers – services that connect Cursor to external tools or data sources via the Model Context Protocol
    • Hooks – custom scripts that let developers observe and control agent behavior at specific execution points
    • Rules – system-level instructions that enforce coding standards and preferences across all sessions

    What is an MCP server in Cursor?
    An MCP (Model Context Protocol) server is a service that connects Cursor’s AI agent to external tools, APIs, or data sources. As part of Cursor’s plugin primitive architecture documented in the official Cursor 2.5 release, February 2026 MCP servers enable the agent to query databases, access design files, call payment APIs, and deploy cloud infrastructure from within the code editor.

    Plugins Across the Full Dev Lifecycle

    The ten launch partners map onto four distinct development workflow stages:

    Stage Plugin What It Does
    Plan & Design Linear Access issues, projects, and documents inside the agent
    Plan & Design Figma Translate designs into code automatically
    Subscriptions & Payments Stripe Build payment integrations using Stripe’s APIs
    Services & Infrastructure AWS Deploy and manage cloud infrastructure from the editor
    Services & Infrastructure Cloudflare Configure edge services from within Cursor
    Services & Infrastructure Vercel Deploy to preview or production; React best practices enforced
    Data & Analytics Databricks Query production data at scale
    Data & Analytics Snowflake Surface warehouse data insights
    Data & Analytics Amplitude Pull behavioral context, analyze dashboards, synthesize feedback, draft PRs
    Data & Analytics Hex Run collaborative data notebooks from within Cursor

    Three engineers from launch partners confirmed production-level impact in their own words. Gus Nguyen, Senior Software Engineer at Stripe, stated: “The Stripe plugin lets Cursor understand how Stripe integrations should be built. It created the products, prices, and payment link using Stripe’s APIs, then shipped a working app almost immediately. It’s a much faster way to build and test Stripe integrations.”

    Elliot Dauber, Software Engineer at Vercel, noted: “Cursor now knows our React best practices and can deploy to preview or production directly from the editor.”

    Frank Lee, Principal Product Manager at Amplitude, added: “With the Amplitude plugin, Cursor can pull in rich behavioral context, analyze growth dashboards, synthesize customer feedback, and turn those insights into concrete recommendations. I can even have Cursor draft a PR immediately.”

    How does the Cursor Stripe plugin work?
    The Cursor Stripe plugin teaches the agent how Stripe integrations should be structured. It connects to Stripe’s APIs, creates products, prices, and payment links, and ships working payment flows from within the editor. Confirmed by Gus Nguyen, Senior Software Engineer at Stripe, in the official Cursor 2.5 release documentation, February 2026.

    Building and Publishing Your Own Plugin

    The Cursor Marketplace accepts community submissions developers can build custom plugins and publish them at cursor.com/marketplace/publish. Cursor itself has published an example set called the Cursor Team Kit, which contains the team’s own internal workflows for CI, code review, and testing, available for any developer to install.

    Can I build my own Cursor plugin?
    Developers can build and publish custom Cursor plugins by combining skills, subagents, MCP servers, hooks, and rules into a single package. Submissions are accepted at cursor.com/marketplace/publish. The Cursor Team Kit containing Cursor’s own CI, code review, and testing workflows is publicly available as a reference, per the official February 2026 launch post.

    Installing any plugin requires either browsing cursor.com/marketplace or typing /add-plugin directly in the Cursor editor. No external configuration file editing is required for standard plugin installs the bundled structure handles setup automatically.

    Sandbox Access Controls

    Cursor 2.5 adds granular network and filesystem access controls to the sandbox environment. Developers can now define exactly which domains the agent is allowed to reach while running sandboxed commands, with three distinct modes:

    • User config only – restricted to domains defined in your sandbox.json
    • User config with defaults – restricted to your allowlist plus Cursor’s built-in defaults
    • Allow all – unrestricted network access within the sandbox

    The sandbox also supports access controls for local filesystem directories and files, not just network domains. Admins on the Enterprise plan can enforce network allowlists and denylists organization-wide from the admin dashboard, ensuring egress policies apply uniformly to all agent sandbox sessions.

    What are Cursor sandbox access controls?
    Cursor 2.5 sandbox access controls let developers define which external domains and local filesystem paths the AI agent can access during sandboxed command execution. Three modes are available: user config only, user config with defaults, or allow all. Enterprise admins can enforce allowlists and denylists organization-wide from the Cursor admin dashboard, per the February 2026 changelog.

    Async Subagents

    Cursor 2.5 changes how subagents execute. Previously, all subagents ran synchronously the parent agent would block until each subagent completed before continuing. Subagents now run asynchronously, allowing the parent agent to continue working while subagents execute in the background.

    Subagents can also spawn their own subagents, creating a tree of coordinated parallel work. This architecture allows Cursor to handle larger tasks: multi-file feature builds, large-scale refactors, and challenging bugs that previously required sequential execution. Performance improvements in this release also deliver lower latency, better streaming feedback, and more responsive parallel execution compared to the previous version.

    What are Cursor async subagents?
    Cursor async subagents are specialized AI agents that run in the background while the parent agent continues working. Introduced in Cursor 2.5, February 2026, subagents now run asynchronously, can spawn their own sub-subagents, and execute with lower latency and better streaming feedback. This enables multi-file features, large refactors, and complex bug resolution to run as coordinated parallel workstreams.

    What’s Coming Next

    Cursor has confirmed that private team marketplaces are in active development. These will allow organizations to share plugins internally with central governance and security controls. No release date has been announced as of February 18, 2026.

    Limitations and Considerations

    This article is based entirely on official Cursor documentation published February 17, 2026 at cursor.com/blog/marketplace and cursor.com/changelog/2-5. The total number of community-submitted plugins is not publicly disclosed. Private team marketplace availability and pricing remain unconfirmed. Cursor subscription pricing is not referenced in this article to verify current tier pricing directly at cursor.com/pricing. No affiliate relationships apply to this coverage.

    Frequently Asked Questions

    What is the Cursor Marketplace?

    The Cursor Marketplace is the official plugin platform for Cursor, the AI code editor by Anysphere, Inc. Launched February 17, 2026 with Cursor 2.5, it allows developers to install prebuilt plugins that bundle MCP servers, skills, subagents, hooks, and rules to extend the AI agent. Browse at cursor.com/marketplace or install via /add-plugin in the editor.

    How do I install a plugin in Cursor?

    Cursor plugins install two ways: browse cursor.com/marketplace and click install, or type /add-plugin directly in the editor. Each plugin is a self-contained bundle no manual configuration file editing is required for standard partner plugins. Both install methods are confirmed in the Cursor 2.5 changelog, February 2026.

    What plugins are available on the Cursor Marketplace at launch?

    Ten verified launch partners are confirmed: Figma, Linear, Stripe, AWS, Cloudflare, Vercel, Databricks, Snowflake, Amplitude, and Hex. Cursor also published the Cursor Team Kit containing its own CI, code review, and testing workflows. Community submissions are accepted at cursor.com/marketplace/publish, per the official February 2026 announcement.

    What are Cursor async subagents?

    Cursor async subagents are specialized agents that run in the background while the parent agent continues. In Cursor 2.5, they now execute asynchronously, can spawn sub-subagents, and run with lower latency and better streaming feedback. This enables Cursor to tackle multi-file features, large refactors, and challenging bugs through coordinated parallel execution.

    Will Cursor support private team marketplaces?

    Cursor has confirmed private team marketplaces are in development. These will let organizations share plugins internally with central governance and security controls. No release date has been announced. This was confirmed in the official Cursor 2.5 blog post published February 17, 2026.

    What is the difference between Cursor hooks and rules?

    Cursor hooks are custom scripts that observe and control agent behavior at specific execution points they run reactively when defined events occur. Rules are system-level instructions applied continuously across all sessions, enforcing coding standards and preferences. Both are plugin primitives that can be bundled into a single Cursor Marketplace plugin, per official Cursor documentation, 2026.

    What is the Cursor Team Kit?

    The Cursor Team Kit is a plugin published by the Cursor team itself, available on the Cursor Marketplace. It contains the team’s own internal workflows for CI, code review, and testing packaged as a ready-to-install plugin any developer can add to their Cursor setup. Confirmed in the official February 2026 marketplace announcement.

    Mohammad Kashif
    Mohammad Kashif
    Senior Technology Analyst and Writer at AdwaitX, specializing in the convergence of Mobile Silicon, Generative AI, and Consumer Hardware. Moving beyond spec sheets, his reviews rigorously test "real-world" metrics analyzing sustained battery efficiency, camera sensor behavior, and long-term software support lifecycles. Kashif’s data-driven approach helps enthusiasts and professionals distinguish between genuine innovation and marketing hype, ensuring they invest in devices that offer lasting value.

    Latest articles

    Claude’s New Web Search Filter Writes Code to Cut Noise, The Numbers Prove It Works

    Web search is one of the most token-intensive operations an AI agent performs and most of those tokens are wasted. Anthropic’s updated web search and web fetch tools for Claude now address this at the

    NVIDIA Nemotron Nano 9B v2 Japanese: The Small Model Reshaping Japan’s AI Sovereignty

    NVIDIA shipped a Japanese-optimized language model that filled a critical gap in enterprise AI: a sub-10B model combining strong Japanese language understanding with genuine agentic capabilities.

    Grok 4.20 Is Not One AI It’s Four Specialized Agents Working in Real Time

    xAI didn’t release a bigger model on February 17, 2026. It released a team. Grok 4.20 is the first consumer-facing AI system from a major lab where four specialized agents each with a distinct role reason in

    Grok 4.20 Beta Is Live: xAI’s Rapid-Learning AI Arrives in February 2026

    xAI didn’t announce a launch window for Grok 4.20 Elon Musk simply posted that it was live. The beta dropped on February 17, 2026, and it represents the most structurally different Grok release since the

    More like this

    Claude’s New Web Search Filter Writes Code to Cut Noise, The Numbers Prove It Works

    Web search is one of the most token-intensive operations an AI agent performs and most of those tokens are wasted. Anthropic’s updated web search and web fetch tools for Claude now address this at the

    NVIDIA Nemotron Nano 9B v2 Japanese: The Small Model Reshaping Japan’s AI Sovereignty

    NVIDIA shipped a Japanese-optimized language model that filled a critical gap in enterprise AI: a sub-10B model combining strong Japanese language understanding with genuine agentic capabilities.

    Grok 4.20 Is Not One AI It’s Four Specialized Agents Working in Real Time

    xAI didn’t release a bigger model on February 17, 2026. It released a team. Grok 4.20 is the first consumer-facing AI system from a major lab where four specialized agents each with a distinct role reason in
    Skip to main content