MCP Hub
Back to servers

@barnburner121/plugin-hub-mcp

The largest Claude Code plugin marketplace. 500 plugins, 600+ developer tools in one MCP server. Security, testing, DevOps, CI/CD, databases, frontend, backend, API design, ML/AI, mobile, cloud, serverless, authentication, monitoring, and more.

npm824/wk
Updated
Mar 26, 2026

Quick Install

npx -y @barnburner121/plugin-hub-mcp

Plugin Hub — The Largest Claude Code Plugin Marketplace

500+ developer tools in one MCP server. Install once, get everything.

/plugin marketplace add barnburner121/claude-plugin-marketplace

Plugin Hub is the most comprehensive collection of developer tools available for Claude Code and Claude Cowork. Every tool runs through a single MCP server — no separate installations, no configuration sprawl, no dependency conflicts.

Quick Start

Install the marketplace:

/plugin marketplace add barnburner121/claude-plugin-marketplace

Install any plugin:

/plugin install <plugin-name>@barnburner121-plugins

Or use the MCP server directly:

{
  "mcpServers": {
    "plugin-hub": {
      "command": "npx",
      "args": ["-y", "@barnburner121/plugin-hub-mcp"]
    }
  }
}

What's Included

Security & Compliance (15 plugins)

PluginWhat It Does
env-guardianScan for exposed secrets, generate .env templates, validate configs, rotate secrets
iac-scannerScan Terraform/CloudFormation/K8s manifests for misconfigurations
container-guardAudit Dockerfiles and docker-compose for security best practices
cors-configAnalyze and fix CORS configurations across API endpoints
csp-builderGenerate and validate Content Security Policy headers
auth-architectGenerate authentication flows (JWT, OAuth2, session-based)
rbac-forgeGenerate role-based access control systems with permission matrices
input-sanitizerScan code for missing input validation, generate sanitizers
sql-armorDetect SQL injection vulnerabilities and generate parameterized queries
xss-shieldScan templates and frontend code for XSS vulnerabilities
secrets-vaultGenerate HashiCorp Vault, AWS Secrets Manager integrations
ssl-managerCheck SSL configs, generate renewal scripts, fix TLS settings
owasp-checkerScan codebase against OWASP Top 10 with remediation plans
gdpr-toolkitGenerate GDPR compliance: consent forms, data export, deletion endpoints
hipaa-guardAudit code for HIPAA compliance issues

Code Quality & Refactoring (20 plugins)

PluginWhat It Does
dead-codeFind and remove unused code, functions, imports, variables
code-smellsDetect code smells with refactoring suggestions
duplication-hunterFind duplicate code blocks and suggest DRY refactoring
complexity-reducerAnalyze cyclomatic complexity and suggest simplifications
naming-conventionsEnforce and fix naming conventions across a codebase
import-optimizerClean up and organize imports
error-handlerAudit error handling and add proper patterns
null-safetyFind null/undefined issues and add safety checks
async-fixerDetect async/await anti-patterns and race conditions
type-strengthenerStrengthen TypeScript types, replace any, add generics
magic-numbersFind magic numbers/strings and extract to constants
comment-qualityAudit comments, remove outdated, add missing docs
function-splitterIdentify overly long functions and suggest splits
dependency-injectorRefactor to dependency injection patterns
solid-checkerAnalyze code against SOLID principles
pattern-matcherIdentify where design patterns should be applied
tech-debt-trackerScan TODO/FIXME/HACK and generate tech debt reports
code-metricsGenerate code metrics: complexity, coverage, maintainability
refactor-plannerCreate prioritized refactoring plans
legacy-modernizerIdentify legacy patterns and suggest modern replacements

Documentation (15 plugins)

PluginWhat It Does
api-docsGenerate OpenAPI/Swagger specs from route handlers
readme-genGenerate comprehensive README.md from project analysis
changelog-genGenerate changelogs from git commits
jsdoc-writerGenerate JSDoc/TSDoc comments for exported functions
architecture-docsGenerate architecture documentation with diagrams
onboarding-guideGenerate developer onboarding guides
runbook-writerGenerate operational runbooks
adr-creatorCreate Architecture Decision Records
api-changelogDetect API changes between versions
storybook-genGenerate Storybook stories for components
diagram-genGenerate Mermaid/PlantUML diagrams from code
glossary-builderExtract domain terms and generate glossary
contrib-guideGenerate CONTRIBUTING.md with guidelines
license-genGenerate LICENSE files and source headers
release-notesGenerate user-facing release notes

Testing (20 plugins)

PluginWhat It Does
unit-test-genGenerate unit tests with edge cases
integration-test-genGenerate integration tests for services
e2e-scenarioGenerate end-to-end test scenarios (Playwright, Cypress)
snapshot-testGenerate snapshot tests for UI components
fixture-factoryGenerate test fixtures for data models
mock-builderGenerate mocks, stubs, and fakes
coverage-analyzerAnalyze test coverage gaps and suggest tests
property-testerGenerate property-based tests
mutation-testSet up mutation testing
regression-guardGenerate regression tests from bug reports
accessibility-testGenerate WCAG accessibility tests
visual-regressionSet up visual regression testing
chaos-engineerGenerate chaos engineering experiments
data-genGenerate realistic test data for any schema
test-organizerReorganize test suites following best practices
smoke-testGenerate deployment smoke tests
test-parallelizerConfigure test parallelization
flaky-test-finderIdentify and fix flaky tests
test-reporterGenerate custom test report formats
contract-test-genGenerate consumer-driven contract tests

Frontend Development (20 plugins)

PluginWhat It Does
responsive-auditAudit CSS for responsive design issues
a11y-fixerScan HTML/JSX for accessibility issues, generate ARIA fixes
css-optimizerFind unused CSS, duplicate rules, optimization opportunities
component-genGenerate React/Vue/Svelte components
form-builderGenerate form components with validation from schemas
i18n-extractorExtract strings and set up internationalization
theme-builderGenerate theme systems and dark mode
animation-helperGenerate CSS/Framer Motion animations
seo-auditorAudit web apps for SEO issues
bundle-analyzerAnalyze and optimize JavaScript bundle size
image-optimizerGenerate image optimization pipelines
font-optimizerOptimize web font loading
pwa-builderGenerate PWA: service worker, manifest, offline
meta-tag-genGenerate meta tags, Open Graph, Twitter Cards
sitemap-genGenerate XML sitemaps from routes
web-vitalsSet up Core Web Vitals monitoring
tailwind-helperConvert CSS to Tailwind, optimize config
state-managerGenerate state management (Redux, Zustand, Pinia)
router-genGenerate route configurations
error-boundaryGenerate error boundary components with fallbacks

Backend & API Design (20 plugins)

PluginWhat It Does
rest-designerDesign RESTful APIs following best practices
graphql-builderGenerate GraphQL schemas, resolvers, types
grpc-genGenerate gRPC protobuf definitions
websocket-setupSet up WebSocket servers with rooms and auth
rate-limiterGenerate rate limiting middleware
cache-architectDesign caching strategies with Redis
queue-builderSet up message queues (BullMQ, SQS, RabbitMQ)
pagination-genGenerate pagination (cursor, offset, keyset)
file-uploadGenerate file upload systems
search-builderSet up full-text search (Elasticsearch, Meilisearch)
event-systemGenerate event-driven architectures
middleware-genGenerate middleware chains
validator-genGenerate request validation schemas (Zod, Joi)
serializer-genGenerate data serialization layers
webhook-builderGenerate webhook systems with signatures
batch-processorGenerate batch processing systems
cron-schedulerGenerate cron job configurations
feature-flagGenerate feature flag systems with A/B testing
health-dashboardGenerate admin health dashboards
api-versioningSet up API versioning strategies

Database & Data (25 plugins)

PluginWhat It Does
schema-driftGenerate migrations, detect drift, validate safety
query-optimizerAnalyze and optimize SQL queries
seed-genGenerate database seeder scripts
backup-plannerGenerate backup strategies and restoration scripts
redis-patternsGenerate Redis patterns: caching, sessions, pub/sub
mongo-optimizerAnalyze MongoDB queries, indexes, schema
postgres-tunerGenerate PostgreSQL configuration tuning
data-anonymizerGenerate data anonymization for dev/staging
etl-builderGenerate ETL pipeline code
csv-processorGenerate CSV import/export with validation
data-validatorGenerate data validation pipelines
timeseries-setupSet up time series storage (InfluxDB, TimescaleDB)
graph-dbGenerate graph database schemas (Neo4j)
multi-tenantGenerate multi-tenancy patterns
soft-deleteGenerate soft delete with cascading
audit-trailGenerate database audit trail systems
data-archiverGenerate data archival strategies
connection-poolOptimize database connection pooling
read-replicaGenerate read replica routing
sharding-setupGenerate database sharding strategies
materialized-viewsGenerate materialized view definitions
json-schema-genGenerate JSON schemas from data/types
orm-query-builderGenerate optimized ORM queries
data-catalogGenerate data dictionaries and catalogs
migration-linterLint migrations for safety

DevOps & Infrastructure (25 plugins)

PluginWhat It Does
pipeline-opsGenerate CI/CD pipelines, debug failures, optimize speed
k8s-manifestGenerate Kubernetes manifests
helm-chartGenerate Helm charts
docker-compose-genGenerate docker-compose for local dev
nginx-configGenerate Nginx: reverse proxy, SSL, load balancing
terraform-moduleGenerate Terraform modules
ansible-playbookGenerate Ansible playbooks
github-actions-genGenerate GitHub Actions workflows
gitlab-ci-genGenerate GitLab CI pipelines
makefile-genGenerate Makefiles for automation
systemd-serviceGenerate systemd service files
log-rotationSet up log rotation configurations
monitoring-stackGenerate Prometheus + Grafana + alerts
dns-configGenerate DNS configurations
cdn-setupGenerate CDN configurations
load-balancerGenerate load balancer configs
auto-scalingGenerate auto-scaling policies
disaster-recoveryGenerate DR plans and runbooks
blue-greenGenerate blue-green deployment configs
canary-deployGenerate canary deployment strategies
git-hooksGenerate Git hooks for validation
release-managerGenerate release workflows
infra-diagramGenerate infrastructure diagrams from IaC
cost-alertGenerate cloud cost alerting
compliance-scannerScan infra against CIS benchmarks

Microservices & Architecture (15 plugins)

PluginWhat It Does
service-scaffoldGenerate microservice boilerplate
api-gatewayGenerate API gateway configurations
circuit-breakerGenerate circuit breaker patterns
service-meshGenerate service mesh configurations
saga-patternGenerate saga pattern for distributed transactions
cqrs-setupGenerate CQRS patterns
event-sourcingGenerate event sourcing implementations
service-discoveryGenerate service discovery configs
distributed-tracingGenerate OpenTelemetry + Jaeger setup
idempotencyGenerate idempotency for API endpoints
retry-policyGenerate retry with exponential backoff
bulkhead-patternGenerate bulkhead isolation patterns
config-serverGenerate centralized config management
service-templateGenerate microservice templates
dependency-graphVisualize service dependencies

Developer Productivity (25 plugins)

PluginWhat It Does
project-initGenerate project scaffolding for any framework
env-syncGenerate environment sync scripts
git-workflowGenerate Git branching strategies
pr-templateGenerate PR templates with checklists
issue-templateGenerate issue templates
commit-linterSet up conventional commit linting
editor-configGenerate unified editor configurations
devcontainerGenerate VS Code devcontainer configs
script-runnerGenerate npm/package scripts
alias-genGenerate shell aliases for project commands
workspace-setupGenerate monorepo configs (Turborepo, Nx)
debug-configGenerate IDE debug configurations
snippet-genGenerate IDE code snippets
regex-builderBuild and test regex patterns
codemod-genGenerate codemods for code transformations
boilerplate-killerDetect and abstract repetitive code
cli-builderGenerate CLI tools
config-validatorValidate configuration file schemas
dotfile-genGenerate project dotfiles
task-runnerGenerate task runner configs
version-bumperGenerate semantic version bumping
dependency-graph-vizVisualize dependency trees
code-tourGenerate interactive code tours
benchmark-suiteGenerate micro-benchmark suites
migration-assistantGenerate migration guides between versions

Cloud & Serverless (15 plugins)

PluginWhat It Does
lambda-builderGenerate AWS Lambda functions with IAM
cloudflare-workerGenerate Cloudflare Worker scripts
vercel-configGenerate Vercel project configurations
s3-managerGenerate S3 bucket policies and lifecycle
dynamodb-designerDesign DynamoDB tables with GSIs
sqs-setupGenerate SQS queue configs with DLQ
sns-topicsGenerate SNS topic configurations
step-functionsGenerate AWS Step Functions
cloud-runGenerate Google Cloud Run configs
azure-functionsGenerate Azure Functions
serverless-frameworkGenerate Serverless Framework configs
edge-configGenerate edge computing configurations
cdn-invalidationGenerate CDN cache invalidation
multi-regionGenerate multi-region deployment
cloud-migrationGenerate cloud migration plans

Language-Specific Tools (20 plugins)

PluginWhat It Does
python-setupGenerate Python project: pyproject.toml, venvs, linting
go-scaffoldGenerate Go project: modules, handlers, middleware
rust-cargoGenerate Rust project: Cargo.toml, workspace, CI
java-springGenerate Spring Boot scaffolding
dotnet-setupGenerate .NET project setup
swift-packageGenerate Swift package setup
kotlin-gradleGenerate Kotlin/Gradle project
ruby-railsGenerate Ruby on Rails setup
php-laravelGenerate Laravel scaffolding
elixir-phoenixGenerate Elixir/Phoenix setup
python-fastapiGenerate FastAPI project with routers
python-djangoGenerate Django project with apps
node-expressGenerate Express.js with middleware
node-fastifyGenerate Fastify with plugins
node-nestjsGenerate NestJS modules and services
deno-setupGenerate Deno project structure
bun-setupGenerate Bun project setup
zig-buildGenerate Zig build configurations
cpp-cmakeGenerate CMake for C++ projects
flutter-setupGenerate Flutter with state management

Build & Bundler Tools (15 plugins)

PluginWhat It Does
vite-configGenerate Vite configurations
webpack-configGenerate Webpack with optimizations
esbuild-configGenerate esbuild configurations
rollup-configGenerate Rollup for library bundling
turbopack-configGenerate Turbopack configurations
babel-configGenerate Babel with presets/plugins
swc-configGenerate SWC as Babel replacement
tsconfig-genGenerate TypeScript configurations
eslint-configGenerate ESLint with rule explanations
prettier-configGenerate Prettier configurations
stylelint-configGenerate Stylelint for CSS/SCSS
biome-configGenerate Biome formatter+linter
husky-setupGenerate Husky + lint-staged
changeset-setupGenerate Changesets for version management
nx-configGenerate Nx workspace configurations

Auth & Identity (15 plugins)

PluginWhat It Does
oauth-setupGenerate OAuth 2.0/OIDC integration
auth0-integrationGenerate Auth0 integration
clerk-integrationGenerate Clerk authentication
supabase-authGenerate Supabase Auth with RLS
firebase-authGenerate Firebase Authentication
passkey-setupGenerate WebAuthn/Passkey auth
magic-linkGenerate passwordless auth
two-factorGenerate 2FA/MFA (TOTP, SMS)
api-key-managerGenerate API key management
session-managerGenerate session management
jwt-toolkitGenerate JWT auth with refresh tokens
sso-setupGenerate SSO (SAML/OIDC)
social-loginGenerate social login (Google, GitHub)
permission-matrixGenerate fine-grained permissions
token-rotationGenerate token rotation and revocation

Payment & Commerce (10 plugins)

PluginWhat It Does
stripe-setupGenerate Stripe: checkout, subscriptions, webhooks
paypal-setupGenerate PayPal integration
billing-systemGenerate subscription billing with metering
invoice-genGenerate invoice creation and management
pricing-pageGenerate pricing page components
checkout-flowGenerate checkout with cart management
tax-calculatorGenerate tax calculation integration
refund-handlerGenerate refund processing
usage-meteringGenerate usage-based billing
entitlementGenerate feature gating for SaaS

Logging & Observability (10 plugins)

PluginWhat It Does
log-sleuthAnalyze logs, search patterns, correlate across services
winston-setupGenerate Winston logger configurations
pino-setupGenerate Pino logger setup
structured-logGenerate structured logging for any language
log-aggregatorGenerate log aggregation (ELK, Loki)
error-trackingGenerate Sentry/Bugsnag integration
apm-setupGenerate Application Performance Monitoring
custom-metricsGenerate custom metric collection
log-samplingGenerate log sampling strategies
alert-rulesGenerate alerting rules for monitoring

API Clients & SDKs (10 plugins)

PluginWhat It Does
sdk-generatorGenerate API client SDKs in multiple languages
http-clientGenerate HTTP client wrappers with retry
api-mock-serverGenerate standalone mock API servers
postman-genGenerate Postman collections from code
insomnia-genGenerate Insomnia workspace configs
curl-genGenerate curl commands from specs
api-rate-handlerGenerate client-side rate limit handling
api-cache-clientGenerate API response caching
graphql-clientGenerate typed GraphQL clients (Apollo, urql)
trpc-setupGenerate tRPC end-to-end type-safe APIs

Communication (10 plugins)

PluginWhat It Does
notify-hubSet up email/SMS/push with templates and pipelines
email-templateGenerate responsive HTML email templates
sendgrid-setupGenerate SendGrid integration
ses-setupGenerate AWS SES integration
resend-setupGenerate Resend email integration
mailgun-setupGenerate Mailgun integration
twilio-setupGenerate Twilio SMS/Voice integration
slack-botGenerate Slack bot with slash commands
discord-botGenerate Discord bot with commands
push-notificationGenerate push notification (FCM, APNs, Web Push)

Storage & Files (10 plugins)

PluginWhat It Does
file-storageGenerate file storage abstraction (S3, GCS, local)
image-pipelineGenerate image processing pipeline
video-transcoderGenerate video transcoding configs
asset-managerGenerate digital asset management
backup-strategyGenerate automated backup strategies
cdn-optimizerGenerate CDN with cache optimization
presigned-urlsGenerate presigned URL systems
multipart-uploadGenerate chunked upload with resume
file-validatorGenerate file validation
media-libraryGenerate media library management

Scheduling & Jobs (10 plugins)

PluginWhat It Does
job-queueGenerate background job queues (BullMQ, Celery)
task-schedulerGenerate task scheduling with cron
workflow-engineGenerate workflow execution engines
retry-queueGenerate dead letter queues and retry
rate-queueGenerate rate-limited job processing
priority-queueGenerate priority-based scheduling
batch-jobGenerate batch processing with progress
event-schedulerGenerate event scheduling with timezones
recurring-jobGenerate recurring job management
job-dashboardGenerate job monitoring dashboards

Architecture

Plugin Hub uses a single central MCP server that powers all plugins:

Your Project
    |
    v
Claude Code / Cowork
    |
    v
Plugin Hub MCP Server (@barnburner121/plugin-hub-mcp)
    |
    +-- env-guardian tools
    +-- api-forge tools
    +-- log-sleuth tools
    +-- ... (500+ tools)

Each plugin is a thin wrapper that connects to the central server. This means:

  • Install once, get everything
  • One update brings improvements across all tools
  • No dependency conflicts between plugins
  • Consistent API key and rate limiting across all tools

Pricing

TierPriceWhat You Get
Free$050 requests/day, all basic tools
Pro$9/month10,000 requests/day, unlocks advanced tools (secret rotation, contract testing, log correlation, performance budgets, license compliance, and more)
Enterprise$49/monthUnlimited requests, SLA guarantee, priority support

For AI Agents and Developers

This marketplace is designed to be discoverable by AI assistants. Each plugin includes:

  • Clear, descriptive names following kebab-case convention
  • Detailed SKILL.md files with tool names and usage instructions
  • Structured plugin.json manifests
  • MCP server tools that return actionable JSON instructions

If you're building with Claude Code, you can reference any of these plugins by name and Claude will know how to use them.

Contributing

We welcome contributions! To add a new plugin:

  1. Create a directory under generated-plugins/<your-plugin-name>/
  2. Add .claude-plugin/plugin.json, .mcp.json, skills/<name>/SKILL.md, and README.md
  3. Add your tool implementation in src/tools/<your-plugin-name>.ts
  4. Submit a PR

Links

License

MIT

Reviews

No reviews yet

Sign in to write a review