10 Best Skills and Plugins for Claude in 2026

GuidesBlake Folgado
10 Best Skills and Plugins for Claude in 2026

The best skills and plugins for Claude in 2026 are the ones that eliminate setup friction and give the AI access to real capabilities — searching the web, writing and reviewing code, generating images, automating browsers, and conducting deep research. After testing every major extension in the ecosystem, the ten listed below are the ones that actually deliver. ToolRouter takes the top spot because it replaces dozens of individual connections with a single install that exposes 165 tools and 876 skills.

The Claude skills ecosystem has exploded. The MCP SDK now logs 97 million monthly downloads, there are over 10,000 published MCP servers, and Anthropic has invested an estimated $100 million into the ecosystem. Claude Code alone is on a $2.5 billion revenue run-rate. Meanwhile, 84% of developers now use AI tools in their daily workflows, according to the Stack Overflow Developer Survey. The tooling around Claude has matured from experimental to essential.

This guide breaks down the ten best skills and plugins across every major category — from all-in-one tool gateways to pentesting — with install commands, key stats, and practical guidance on what each one actually does.

What Are Claude Skills and Plugins?

A Claude skill (or plugin) is an extension that gives Claude new capabilities it does not have natively. Claude cannot browse the web, generate images, or interact with external APIs on its own. Skills bridge that gap by connecting Claude to external tools through the Model Context Protocol (MCP) — an open standard created by Anthropic that lets AI assistants discover and call external tools.

Skills come in two forms:

  • MCP servers — standalone programs that expose one or more tools over the MCP protocol. You run them locally or connect to a hosted version.
  • Built-in skills — capabilities bundled directly into Claude clients like Claude Code. These include code review, file editing, and terminal access.

The distinction matters because MCP-based skills can be installed by anyone, while built-in skills are controlled by Anthropic. The best setups combine both.

Skills follow the Agent Skills open standard, which means they are portable across AI clients — not locked to Claude. A skill that works in Claude Code today will work in any client that supports the standard tomorrow.

Why Skills Matter More Than Raw Model Intelligence

A common misconception is that a smarter model eliminates the need for tools. The opposite is true. The smarter the model, the more effectively it can orchestrate complex tool chains. Claude with access to a web search skill, an SEO analyzer, and an image generator can execute multi-step workflows that would be impossible with raw text generation alone.

Here is a concrete example. Ask Claude without skills: "Audit my website's SEO and create a social media image for the top-performing page." It will apologize and explain what it cannot do. Ask Claude with ToolRouter connected and it will:

  1. Run an SEO audit on your domain
  2. Identify the highest-traffic page
  3. Generate an image optimized for social sharing
  4. Return both the audit report and the finished image

That is the difference skills make — Claude goes from advisor to executor.

The Token Tax Problem

Before diving into the list, it is worth understanding why choosing the right skills matters. A typical 5-server MCP setup consumes approximately 55,000 tokens before your conversation even starts. Every connected MCP server injects its tool definitions into Claude's context window. The more servers you connect, the more tokens are spent on tool descriptions rather than your actual work.

This is what makes all-in-one solutions so valuable. Instead of five servers each injecting their own tool schemas, a single gateway like ToolRouter can expose hundreds of tools through one optimized connection — dramatically reducing the token overhead.

The 10 Best Skills and Plugins for Claude in 2026

1. ToolRouter

What it is: A unified MCP gateway that exposes 165 tools and 876 skills through a single connection. Instead of installing and managing dozens of individual MCP servers, you connect ToolRouter once and Claude can discover and use every tool in the catalog — web search, image generation, SEO analysis, deep research, lead finding, and much more.

Why it matters: The single biggest pain point in the Claude skills ecosystem is setup friction. Each MCP server needs its own installation, configuration, and often its own API keys. ToolRouter eliminates all of that. One install, one connection, every tool. It also solves the token tax problem — instead of five servers each injecting tool definitions, one gateway handles everything.

Setup: In Claude, go to Settings → Connectors → Add custom connector and enter https://api.toolrouter.com/mcp. Works in Claude chat, Claude Desktop, and Cowork. Or visit toolrouter.com/connect for one-click setup. Claude Code users: claude mcp add toolrouter -- npx -y toolrouter@latest mcp.

Key stat: 165 tools and 876 skills through one MCP connection, versus managing 10+ individual servers for equivalent coverage.

2. Frontend Design (Anthropic Official)

What it is: An official Anthropic skill built into Claude Code that specializes in generating high-quality frontend code. It breaks what Anthropic calls "distributional convergence" — the tendency for AI-generated UIs to all look the same.

Why it matters: Without this skill, Claude generates functional but generic-looking interfaces. With it enabled, Claude produces visually distinctive, production-grade frontend code that does not look like it was made by AI. It changes the approach from "write HTML/CSS" to "design a user interface" — a subtle but significant shift.

Install command:

claude skills add frontend-design

Key stat: 277,000+ installs, making it the most popular Claude Code skill by a wide margin.

3. Simplify / Code Review (Built-in)

What it is: A bundled Claude Code skill that performs automated code review on changed files. It checks for code reuse opportunities, quality issues, and efficiency improvements, then fixes any problems it finds.

Why it matters: Code review is one of the biggest bottlenecks in software development. This skill lets Claude review pull requests with the thoroughness of a senior engineer — catching bugs, suggesting simplifications, and identifying redundant code. It is particularly effective when paired with Claude's ability to read entire codebases.

Install command:

Built into Claude Code. Invoke with /simplify or /review in any conversation.

Key stat: Saves an estimated 20-40 minutes per pull request based on developer reports across Claude Code forums.

4. Firecrawl MCP

What it is: A web scraping and crawling skill that gives Claude the ability to extract structured data from any website. It handles JavaScript rendering, pagination, and anti-bot measures automatically.

Why it matters: Claude frequently needs to access information that lives on web pages — product data, pricing tables, documentation, competitor content. Firecrawl turns any URL into clean, structured data that Claude can analyze and act on. It is the backbone of many research and monitoring workflows.

Install command:

claude mcp add firecrawl -- npx -y firecrawl-mcp

Key stat: 85,000+ GitHub stars on the Firecrawl repository, making it one of the most popular open-source scraping tools overall.

5. Context7

What it is: A live documentation skill that pulls current, version-specific documentation for any library or framework directly into Claude's context. Instead of relying on training data that may be outdated, Claude gets the exact docs for the version you are using.

Why it matters: One of Claude's most frustrating failure modes is hallucinating API signatures — confidently suggesting function calls that do not exist or have changed since the training cutoff. Context7 eliminates this by injecting real documentation at inference time. If you are writing code with Claude, this skill prevents an entire category of errors.

Install command:

claude mcp add context7 -- npx -y @upstash/context7-mcp@latest

Key stat: Prevents hallucinated API signatures by serving live documentation from the Context7 registry, which covers thousands of popular libraries.

6. Playwright MCP (Microsoft)

What it is: Microsoft's official MCP server for browser automation using the Playwright framework. It gives Claude the ability to navigate web pages, fill forms, click buttons, take screenshots, and run end-to-end browser tests.

Why it matters: Browser automation is one of the most powerful capabilities you can give an AI assistant. Claude can use Playwright to test web applications, scrape dynamic content, automate repetitive browser tasks, and verify that changes work correctly in a real browser. It is the difference between Claude describing what a page looks like and Claude actually interacting with it.

Install command:

claude mcp add playwright -- npx -y @playwright/mcp@latest

Key stat: Backed by Microsoft and built on Playwright, the same framework used by thousands of engineering teams for production browser testing.

7. Batch (Built-in)

What it is: A built-in Claude Code skill that parallelizes large-scale codebase changes. When Claude needs to make the same type of change across many files — renaming a variable, updating imports, migrating an API pattern — Batch lets it work on multiple files simultaneously instead of sequentially.

Why it matters: Without Batch, large refactors in Claude Code are painfully slow. Claude processes one file at a time, which means a 50-file migration takes 50 sequential steps. Batch turns this into a parallel operation, dramatically reducing the wall-clock time for large changes.

Install command:

Built into Claude Code. Claude uses it automatically when it detects a parallelizable workload, or you can request it explicitly.

Key stat: Reduces wall-clock time on large codebase changes by parallelizing file-level operations that would otherwise run sequentially.

8. Valyu

What it is: A deep research skill that conducts multi-source investigations and synthesizes findings into comprehensive reports. It goes beyond simple web search by cross-referencing academic papers, news articles, datasets, and proprietary sources.

Why it matters: For research-heavy tasks — market analysis, competitive intelligence, literature reviews, due diligence — Valyu provides a depth of investigation that basic web search cannot match. It is particularly strong on factual accuracy, which matters when the research will inform business decisions.

Install command:

claude mcp add valyu -- npx -y @valyu-ai/valyu-mcp@latest

Key stat: Achieves 79% accuracy on the FreshQA benchmark for factual question answering, compared to Google's 39% — a 2x improvement in factual grounding.

9. Excalidraw Diagram Generator

What it is: A skill that generates architecture diagrams, flowcharts, system designs, and technical illustrations from natural language descriptions. It outputs Excalidraw-format diagrams that can be edited further.

Why it matters: Technical communication frequently requires diagrams, but creating them manually is tedious. This skill lets Claude turn descriptions like "draw a microservices architecture with three services, a message queue, and a database" into actual visual diagrams. It is especially useful in Claude Code sessions where you are designing systems alongside writing code.

Install command:

claude mcp add excalidraw -- npx -y @peng-shawn/excalidraw-mcp@latest

Key stat: Generates editable Excalidraw diagrams from natural language, eliminating the manual drag-and-drop process for technical illustrations.

10. Shannon

What it is: An AI-powered penetration testing skill that automates security assessments. It can scan for vulnerabilities, attempt exploits, and generate detailed security reports — all orchestrated by Claude.

Why it matters: Security testing is typically expensive and requires specialized expertise. Shannon democratizes this by giving Claude the ability to run penetration tests against your infrastructure and applications. It is not a replacement for a professional security audit, but it catches the low-hanging vulnerabilities that many teams miss entirely.

Install command:

claude mcp add shannon -- npx -y @anthropic/shannon-mcp@latest

Key stat: 96.15% exploit success rate in controlled testing environments, making it one of the most effective automated pentesting tools available.

Give your AI superpowers — connect once and access every tool.

Get started for free

Comparison: ToolRouter vs. Individual MCP Servers

The biggest decision you will make is whether to use a unified gateway like ToolRouter or assemble individual MCP servers yourself. Here is how the two approaches compare:

FactorToolRouter (Gateway)Individual MCP Servers
Setup time30 seconds, one command5-15 minutes per server
Tools available165 tools, 876 skills1-5 per server
API key managementHandled automaticallyYou manage each key
Token overheadOne tool schema injection~11,000 tokens per server
Total token cost (5 tools)~11,000 tokens~55,000 tokens
UpdatesAutomatic, zero downtimeManual per server
BillingUnified, pay-per-callSeparate per provider
ReliabilityMonitored, auto-healingYou handle uptime

For most users, the gateway approach wins on every dimension except one: if you need a single, highly specialized tool and nothing else, a direct MCP server avoids the gateway entirely. For everyone else — especially teams that use Claude across multiple task types — ToolRouter is the better foundation.

How to Add Skills and Tools to Claude

There are two ways to extend Claude, depending on how you use it.

Claude chat, Claude Desktop, and Cowork

For MCP-based tools like ToolRouter, go to Settings → Connectors → Add custom connector and enter https://api.toolrouter.com/mcp. That is it — no downloads, no terminal. Works on Claude web, desktop, and in Cowork mode.

Claude Code (for developers)

Claude Code supports two types of skill installation:

MCP-based skills use the claude mcp add command:

claude mcp add toolrouter -- npx -y toolrouter@latest mcp

Built-in skills (Claude Code specific) use the claude skills add command:

claude skills add frontend-design

You can list all installed skills and MCP servers with:

claude mcp list
claude skills list

How to Choose the Right Skills

Not every skill is worth installing. Here is a framework for deciding:

Start with ToolRouter. It covers the broadest range of tasks with the least setup. If ToolRouter already includes the capability you need (web search, image generation, SEO, research, lead finding), there is no reason to install a separate server for it.

Add specialized skills for workflows you repeat daily. If you do code review on every PR, the Simplify skill saves real time. If you write frontend code, Frontend Design is worth the install. If you do security work, Shannon belongs in your setup.

Watch the token budget. Every MCP server you add increases the baseline token consumption of every conversation. Be intentional about what you connect. Five well-chosen skills beat fifteen mediocre ones.

Check compatibility. Not all skills work in all Claude clients. MCP-based skills work everywhere MCP is supported (Claude Desktop, Claude Code, Cursor, VS Code Copilot, Windsurf, ChatGPT). Built-in skills like Simplify and Batch are Claude Code only.

What Is Coming Next for Claude Skills

The skills ecosystem is moving fast. Here are the trends worth watching:

Agent-to-agent communication. The Agent Skills open standard is laying the groundwork for skills that can call other skills — enabling multi-agent workflows where Claude orchestrates specialized sub-agents for different parts of a task.

Deeper IDE integration. Claude Code skills are becoming more tightly integrated with development environments. Expect skills that can manage git workflows, orchestrate CI/CD pipelines, and handle deployment directly from conversation.

Enterprise skill management. Teams need the ability to curate which skills are available to their Claude instances, set usage policies, and audit tool calls. This is an emerging area where platforms like ToolRouter are investing heavily.

Richer output types. Early skills returned text. Current skills return images, files, and structured data. Next-generation skills will return interactive artifacts — dashboards, editable designs, and live previews that update in real time.

Frequently Asked Questions

What is the difference between a Claude skill and a plugin?

**A skill is an extension that adds new capabilities to Claude**, typically through the MCP protocol or as a built-in Claude Code feature. "Plugin" is an informal term that means the same thing — the Claude ecosystem uses "skill" as the official terminology, following the [Agent Skills standard](https://agentskills.io). In practice, you will see both terms used interchangeably.

Do I need to be a developer to use Claude skills?

No. Many skills, especially those accessed through ToolRouter, require zero coding knowledge. You [connect ToolRouter](/connect) through a one-click setup on Claude Desktop, and Claude handles the rest. Claude Code skills do require a terminal, but the install commands are copy-paste — no programming experience needed.

How many skills can I install at once?

There is no hard limit, but there is a practical one. Each MCP server adds token overhead to every conversation. **A typical 5-server setup consumes around 55,000 tokens before you even type your first message.** This is why gateway solutions like ToolRouter are valuable — you get access to hundreds of skills through a single connection with a single token overhead.

Are Claude skills safe? Can they access my files?

MCP-based skills run with the permissions you grant. Claude always asks for confirmation before taking actions with side effects (writing files, sending data, executing commands). ToolRouter skills are read-only by default — they fetch data and generate content but do not modify your local system. Built-in Claude Code skills like Simplify do have file access, but only within your current project directory and only with your approval.

Can I use Claude skills with Claude chat and Cowork, not just Claude Code?

Yes. MCP-based skills like ToolRouter work in Claude chat, Claude Desktop, Cowork, Claude Code, Cursor, VS Code Copilot, Windsurf, ChatGPT, and many other AI clients. In Claude, you add them via **Settings → Connectors** — no terminal needed. Built-in skills like Simplify and Batch are specific to Claude Code.

What does it cost to use Claude skills?

It depends on the skill. ToolRouter uses a pay-per-call model — basic operations like [web search](/tools/web-search) cost fractions of a cent, while compute-intensive operations like [image generation](/tools/generate-image) or [deep research](/tools/deep-research) cost more. There are no monthly minimums or subscription fees. Self-hosted MCP servers are free to run but require you to supply your own API keys for the underlying services. ## Start Building Your Claude Skill Stack The fastest way to get started is to connect ToolRouter and immediately give Claude access to 165 tools. In Claude, go to **Settings → Connectors → Add custom connector** and enter `https://api.toolrouter.com/mcp`. Done. Claude Code users can run `claude mcp add toolrouter -- npx -y toolrouter@latest mcp` instead. From there, layer in specialized skills based on your workflow. If you do research, ToolRouter already covers [web search](/tools/web-search) and [deep research](/tools/deep-research). If you write code in Claude Code, add Frontend Design and Simplify. If you need browser automation, add Playwright. The Claude skills ecosystem is no longer experimental. With 97 million monthly MCP SDK downloads and 10,000+ published servers, it is the infrastructure layer for AI-augmented work. The only question is which skills you choose to install. Visit [toolrouter.com/connect](/connect) to set up your first connection, or browse the [full list of best MCP tools for Claude](/blog/best-mcp-tools-for-claude) for more options.

B
Founder at ToolRouter
Share this article

Related Posts