{
  "markdown": "# Plugin Hub — The Largest Claude Code Plugin Marketplace\n\n**500+ developer tools in one MCP server.** Install once, get everything.\n\n```\n/plugin marketplace add barnburner121/claude-plugin-marketplace\n```\n\nPlugin 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.\n\n## Quick Start\n\n**Install the marketplace:**\n```\n/plugin marketplace add barnburner121/claude-plugin-marketplace\n```\n\n**Install any plugin:**\n```\n/plugin install <plugin-name>@barnburner121-plugins\n```\n\n**Or use the MCP server directly:**\n```json\n{\n  \"mcpServers\": {\n    \"plugin-hub\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@barnburner121/plugin-hub-mcp\"]\n    }\n  }\n}\n```\n\n## What's Included\n\n### Security & Compliance (15 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `env-guardian` | Scan for exposed secrets, generate .env templates, validate configs, rotate secrets |\n| `iac-scanner` | Scan Terraform/CloudFormation/K8s manifests for misconfigurations |\n| `container-guard` | Audit Dockerfiles and docker-compose for security best practices |\n| `cors-config` | Analyze and fix CORS configurations across API endpoints |\n| `csp-builder` | Generate and validate Content Security Policy headers |\n| `auth-architect` | Generate authentication flows (JWT, OAuth2, session-based) |\n| `rbac-forge` | Generate role-based access control systems with permission matrices |\n| `input-sanitizer` | Scan code for missing input validation, generate sanitizers |\n| `sql-armor` | Detect SQL injection vulnerabilities and generate parameterized queries |\n| `xss-shield` | Scan templates and frontend code for XSS vulnerabilities |\n| `secrets-vault` | Generate HashiCorp Vault, AWS Secrets Manager integrations |\n| `ssl-manager` | Check SSL configs, generate renewal scripts, fix TLS settings |\n| `owasp-checker` | Scan codebase against OWASP Top 10 with remediation plans |\n| `gdpr-toolkit` | Generate GDPR compliance: consent forms, data export, deletion endpoints |\n| `hipaa-guard` | Audit code for HIPAA compliance issues |\n\n### Code Quality & Refactoring (20 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `dead-code` | Find and remove unused code, functions, imports, variables |\n| `code-smells` | Detect code smells with refactoring suggestions |\n| `duplication-hunter` | Find duplicate code blocks and suggest DRY refactoring |\n| `complexity-reducer` | Analyze cyclomatic complexity and suggest simplifications |\n| `naming-conventions` | Enforce and fix naming conventions across a codebase |\n| `import-optimizer` | Clean up and organize imports |\n| `error-handler` | Audit error handling and add proper patterns |\n| `null-safety` | Find null/undefined issues and add safety checks |\n| `async-fixer` | Detect async/await anti-patterns and race conditions |\n| `type-strengthener` | Strengthen TypeScript types, replace `any`, add generics |\n| `magic-numbers` | Find magic numbers/strings and extract to constants |\n| `comment-quality` | Audit comments, remove outdated, add missing docs |\n| `function-splitter` | Identify overly long functions and suggest splits |\n| `dependency-injector` | Refactor to dependency injection patterns |\n| `solid-checker` | Analyze code against SOLID principles |\n| `pattern-matcher` | Identify where design patterns should be applied |\n| `tech-debt-tracker` | Scan TODO/FIXME/HACK and generate tech debt reports |\n| `code-metrics` | Generate code metrics: complexity, coverage, maintainability |\n| `refactor-planner` | Create prioritized refactoring plans |\n| `legacy-modernizer` | Identify legacy patterns and suggest modern replacements |\n\n### Documentation (15 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `api-docs` | Generate OpenAPI/Swagger specs from route handlers |\n| `readme-gen` | Generate comprehensive README.md from project analysis |\n| `changelog-gen` | Generate changelogs from git commits |\n| `jsdoc-writer` | Generate JSDoc/TSDoc comments for exported functions |\n| `architecture-docs` | Generate architecture documentation with diagrams |\n| `onboarding-guide` | Generate developer onboarding guides |\n| `runbook-writer` | Generate operational runbooks |\n| `adr-creator` | Create Architecture Decision Records |\n| `api-changelog` | Detect API changes between versions |\n| `storybook-gen` | Generate Storybook stories for components |\n| `diagram-gen` | Generate Mermaid/PlantUML diagrams from code |\n| `glossary-builder` | Extract domain terms and generate glossary |\n| `contrib-guide` | Generate CONTRIBUTING.md with guidelines |\n| `license-gen` | Generate LICENSE files and source headers |\n| `release-notes` | Generate user-facing release notes |\n\n### Testing (20 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `unit-test-gen` | Generate unit tests with edge cases |\n| `integration-test-gen` | Generate integration tests for services |\n| `e2e-scenario` | Generate end-to-end test scenarios (Playwright, Cypress) |\n| `snapshot-test` | Generate snapshot tests for UI components |\n| `fixture-factory` | Generate test fixtures for data models |\n| `mock-builder` | Generate mocks, stubs, and fakes |\n| `coverage-analyzer` | Analyze test coverage gaps and suggest tests |\n| `property-tester` | Generate property-based tests |\n| `mutation-test` | Set up mutation testing |\n| `regression-guard` | Generate regression tests from bug reports |\n| `accessibility-test` | Generate WCAG accessibility tests |\n| `visual-regression` | Set up visual regression testing |\n| `chaos-engineer` | Generate chaos engineering experiments |\n| `data-gen` | Generate realistic test data for any schema |\n| `test-organizer` | Reorganize test suites following best practices |\n| `smoke-test` | Generate deployment smoke tests |\n| `test-parallelizer` | Configure test parallelization |\n| `flaky-test-finder` | Identify and fix flaky tests |\n| `test-reporter` | Generate custom test report formats |\n| `contract-test-gen` | Generate consumer-driven contract tests |\n\n### Frontend Development (20 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `responsive-audit` | Audit CSS for responsive design issues |\n| `a11y-fixer` | Scan HTML/JSX for accessibility issues, generate ARIA fixes |\n| `css-optimizer` | Find unused CSS, duplicate rules, optimization opportunities |\n| `component-gen` | Generate React/Vue/Svelte components |\n| `form-builder` | Generate form components with validation from schemas |\n| `i18n-extractor` | Extract strings and set up internationalization |\n| `theme-builder` | Generate theme systems and dark mode |\n| `animation-helper` | Generate CSS/Framer Motion animations |\n| `seo-auditor` | Audit web apps for SEO issues |\n| `bundle-analyzer` | Analyze and optimize JavaScript bundle size |\n| `image-optimizer` | Generate image optimization pipelines |\n| `font-optimizer` | Optimize web font loading |\n| `pwa-builder` | Generate PWA: service worker, manifest, offline |\n| `meta-tag-gen` | Generate meta tags, Open Graph, Twitter Cards |\n| `sitemap-gen` | Generate XML sitemaps from routes |\n| `web-vitals` | Set up Core Web Vitals monitoring |\n| `tailwind-helper` | Convert CSS to Tailwind, optimize config |\n| `state-manager` | Generate state management (Redux, Zustand, Pinia) |\n| `router-gen` | Generate route configurations |\n| `error-boundary` | Generate error boundary components with fallbacks |\n\n### Backend & API Design (20 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `rest-designer` | Design RESTful APIs following best practices |\n| `graphql-builder` | Generate GraphQL schemas, resolvers, types |\n| `grpc-gen` | Generate gRPC protobuf definitions |\n| `websocket-setup` | Set up WebSocket servers with rooms and auth |\n| `rate-limiter` | Generate rate limiting middleware |\n| `cache-architect` | Design caching strategies with Redis |\n| `queue-builder` | Set up message queues (BullMQ, SQS, RabbitMQ) |\n| `pagination-gen` | Generate pagination (cursor, offset, keyset) |\n| `file-upload` | Generate file upload systems |\n| `search-builder` | Set up full-text search (Elasticsearch, Meilisearch) |\n| `event-system` | Generate event-driven architectures |\n| `middleware-gen` | Generate middleware chains |\n| `validator-gen` | Generate request validation schemas (Zod, Joi) |\n| `serializer-gen` | Generate data serialization layers |\n| `webhook-builder` | Generate webhook systems with signatures |\n| `batch-processor` | Generate batch processing systems |\n| `cron-scheduler` | Generate cron job configurations |\n| `feature-flag` | Generate feature flag systems with A/B testing |\n| `health-dashboard` | Generate admin health dashboards |\n| `api-versioning` | Set up API versioning strategies |\n\n### Database & Data (25 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `schema-drift` | Generate migrations, detect drift, validate safety |\n| `query-optimizer` | Analyze and optimize SQL queries |\n| `seed-gen` | Generate database seeder scripts |\n| `backup-planner` | Generate backup strategies and restoration scripts |\n| `redis-patterns` | Generate Redis patterns: caching, sessions, pub/sub |\n| `mongo-optimizer` | Analyze MongoDB queries, indexes, schema |\n| `postgres-tuner` | Generate PostgreSQL configuration tuning |\n| `data-anonymizer` | Generate data anonymization for dev/staging |\n| `etl-builder` | Generate ETL pipeline code |\n| `csv-processor` | Generate CSV import/export with validation |\n| `data-validator` | Generate data validation pipelines |\n| `timeseries-setup` | Set up time series storage (InfluxDB, TimescaleDB) |\n| `graph-db` | Generate graph database schemas (Neo4j) |\n| `multi-tenant` | Generate multi-tenancy patterns |\n| `soft-delete` | Generate soft delete with cascading |\n| `audit-trail` | Generate database audit trail systems |\n| `data-archiver` | Generate data archival strategies |\n| `connection-pool` | Optimize database connection pooling |\n| `read-replica` | Generate read replica routing |\n| `sharding-setup` | Generate database sharding strategies |\n| `materialized-views` | Generate materialized view definitions |\n| `json-schema-gen` | Generate JSON schemas from data/types |\n| `orm-query-builder` | Generate optimized ORM queries |\n| `data-catalog` | Generate data dictionaries and catalogs |\n| `migration-linter` | Lint migrations for safety |\n\n### DevOps & Infrastructure (25 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `pipeline-ops` | Generate CI/CD pipelines, debug failures, optimize speed |\n| `k8s-manifest` | Generate Kubernetes manifests |\n| `helm-chart` | Generate Helm charts |\n| `docker-compose-gen` | Generate docker-compose for local dev |\n| `nginx-config` | Generate Nginx: reverse proxy, SSL, load balancing |\n| `terraform-module` | Generate Terraform modules |\n| `ansible-playbook` | Generate Ansible playbooks |\n| `github-actions-gen` | Generate GitHub Actions workflows |\n| `gitlab-ci-gen` | Generate GitLab CI pipelines |\n| `makefile-gen` | Generate Makefiles for automation |\n| `systemd-service` | Generate systemd service files |\n| `log-rotation` | Set up log rotation configurations |\n| `monitoring-stack` | Generate Prometheus + Grafana + alerts |\n| `dns-config` | Generate DNS configurations |\n| `cdn-setup` | Generate CDN configurations |\n| `load-balancer` | Generate load balancer configs |\n| `auto-scaling` | Generate auto-scaling policies |\n| `disaster-recovery` | Generate DR plans and runbooks |\n| `blue-green` | Generate blue-green deployment configs |\n| `canary-deploy` | Generate canary deployment strategies |\n| `git-hooks` | Generate Git hooks for validation |\n| `release-manager` | Generate release workflows |\n| `infra-diagram` | Generate infrastructure diagrams from IaC |\n| `cost-alert` | Generate cloud cost alerting |\n| `compliance-scanner` | Scan infra against CIS benchmarks |\n\n### Microservices & Architecture (15 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `service-scaffold` | Generate microservice boilerplate |\n| `api-gateway` | Generate API gateway configurations |\n| `circuit-breaker` | Generate circuit breaker patterns |\n| `service-mesh` | Generate service mesh configurations |\n| `saga-pattern` | Generate saga pattern for distributed transactions |\n| `cqrs-setup` | Generate CQRS patterns |\n| `event-sourcing` | Generate event sourcing implementations |\n| `service-discovery` | Generate service discovery configs |\n| `distributed-tracing` | Generate OpenTelemetry + Jaeger setup |\n| `idempotency` | Generate idempotency for API endpoints |\n| `retry-policy` | Generate retry with exponential backoff |\n| `bulkhead-pattern` | Generate bulkhead isolation patterns |\n| `config-server` | Generate centralized config management |\n| `service-template` | Generate microservice templates |\n| `dependency-graph` | Visualize service dependencies |\n\n### Developer Productivity (25 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `project-init` | Generate project scaffolding for any framework |\n| `env-sync` | Generate environment sync scripts |\n| `git-workflow` | Generate Git branching strategies |\n| `pr-template` | Generate PR templates with checklists |\n| `issue-template` | Generate issue templates |\n| `commit-linter` | Set up conventional commit linting |\n| `editor-config` | Generate unified editor configurations |\n| `devcontainer` | Generate VS Code devcontainer configs |\n| `script-runner` | Generate npm/package scripts |\n| `alias-gen` | Generate shell aliases for project commands |\n| `workspace-setup` | Generate monorepo configs (Turborepo, Nx) |\n| `debug-config` | Generate IDE debug configurations |\n| `snippet-gen` | Generate IDE code snippets |\n| `regex-builder` | Build and test regex patterns |\n| `codemod-gen` | Generate codemods for code transformations |\n| `boilerplate-killer` | Detect and abstract repetitive code |\n| `cli-builder` | Generate CLI tools |\n| `config-validator` | Validate configuration file schemas |\n| `dotfile-gen` | Generate project dotfiles |\n| `task-runner` | Generate task runner configs |\n| `version-bumper` | Generate semantic version bumping |\n| `dependency-graph-viz` | Visualize dependency trees |\n| `code-tour` | Generate interactive code tours |\n| `benchmark-suite` | Generate micro-benchmark suites |\n| `migration-assistant` | Generate migration guides between versions |\n\n### Cloud & Serverless (15 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `lambda-builder` | Generate AWS Lambda functions with IAM |\n| `cloudflare-worker` | Generate Cloudflare Worker scripts |\n| `vercel-config` | Generate Vercel project configurations |\n| `s3-manager` | Generate S3 bucket policies and lifecycle |\n| `dynamodb-designer` | Design DynamoDB tables with GSIs |\n| `sqs-setup` | Generate SQS queue configs with DLQ |\n| `sns-topics` | Generate SNS topic configurations |\n| `step-functions` | Generate AWS Step Functions |\n| `cloud-run` | Generate Google Cloud Run configs |\n| `azure-functions` | Generate Azure Functions |\n| `serverless-framework` | Generate Serverless Framework configs |\n| `edge-config` | Generate edge computing configurations |\n| `cdn-invalidation` | Generate CDN cache invalidation |\n| `multi-region` | Generate multi-region deployment |\n| `cloud-migration` | Generate cloud migration plans |\n\n### Language-Specific Tools (20 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `python-setup` | Generate Python project: pyproject.toml, venvs, linting |\n| `go-scaffold` | Generate Go project: modules, handlers, middleware |\n| `rust-cargo` | Generate Rust project: Cargo.toml, workspace, CI |\n| `java-spring` | Generate Spring Boot scaffolding |\n| `dotnet-setup` | Generate .NET project setup |\n| `swift-package` | Generate Swift package setup |\n| `kotlin-gradle` | Generate Kotlin/Gradle project |\n| `ruby-rails` | Generate Ruby on Rails setup |\n| `php-laravel` | Generate Laravel scaffolding |\n| `elixir-phoenix` | Generate Elixir/Phoenix setup |\n| `python-fastapi` | Generate FastAPI project with routers |\n| `python-django` | Generate Django project with apps |\n| `node-express` | Generate Express.js with middleware |\n| `node-fastify` | Generate Fastify with plugins |\n| `node-nestjs` | Generate NestJS modules and services |\n| `deno-setup` | Generate Deno project structure |\n| `bun-setup` | Generate Bun project setup |\n| `zig-build` | Generate Zig build configurations |\n| `cpp-cmake` | Generate CMake for C++ projects |\n| `flutter-setup` | Generate Flutter with state management |\n\n### Build & Bundler Tools (15 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `vite-config` | Generate Vite configurations |\n| `webpack-config` | Generate Webpack with optimizations |\n| `esbuild-config` | Generate esbuild configurations |\n| `rollup-config` | Generate Rollup for library bundling |\n| `turbopack-config` | Generate Turbopack configurations |\n| `babel-config` | Generate Babel with presets/plugins |\n| `swc-config` | Generate SWC as Babel replacement |\n| `tsconfig-gen` | Generate TypeScript configurations |\n| `eslint-config` | Generate ESLint with rule explanations |\n| `prettier-config` | Generate Prettier configurations |\n| `stylelint-config` | Generate Stylelint for CSS/SCSS |\n| `biome-config` | Generate Biome formatter+linter |\n| `husky-setup` | Generate Husky + lint-staged |\n| `changeset-setup` | Generate Changesets for version management |\n| `nx-config` | Generate Nx workspace configurations |\n\n### Auth & Identity (15 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `oauth-setup` | Generate OAuth 2.0/OIDC integration |\n| `auth0-integration` | Generate Auth0 integration |\n| `clerk-integration` | Generate Clerk authentication |\n| `supabase-auth` | Generate Supabase Auth with RLS |\n| `firebase-auth` | Generate Firebase Authentication |\n| `passkey-setup` | Generate WebAuthn/Passkey auth |\n| `magic-link` | Generate passwordless auth |\n| `two-factor` | Generate 2FA/MFA (TOTP, SMS) |\n| `api-key-manager` | Generate API key management |\n| `session-manager` | Generate session management |\n| `jwt-toolkit` | Generate JWT auth with refresh tokens |\n| `sso-setup` | Generate SSO (SAML/OIDC) |\n| `social-login` | Generate social login (Google, GitHub) |\n| `permission-matrix` | Generate fine-grained permissions |\n| `token-rotation` | Generate token rotation and revocation |\n\n### Payment & Commerce (10 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `stripe-setup` | Generate Stripe: checkout, subscriptions, webhooks |\n| `paypal-setup` | Generate PayPal integration |\n| `billing-system` | Generate subscription billing with metering |\n| `invoice-gen` | Generate invoice creation and management |\n| `pricing-page` | Generate pricing page components |\n| `checkout-flow` | Generate checkout with cart management |\n| `tax-calculator` | Generate tax calculation integration |\n| `refund-handler` | Generate refund processing |\n| `usage-metering` | Generate usage-based billing |\n| `entitlement` | Generate feature gating for SaaS |\n\n### Logging & Observability (10 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `log-sleuth` | Analyze logs, search patterns, correlate across services |\n| `winston-setup` | Generate Winston logger configurations |\n| `pino-setup` | Generate Pino logger setup |\n| `structured-log` | Generate structured logging for any language |\n| `log-aggregator` | Generate log aggregation (ELK, Loki) |\n| `error-tracking` | Generate Sentry/Bugsnag integration |\n| `apm-setup` | Generate Application Performance Monitoring |\n| `custom-metrics` | Generate custom metric collection |\n| `log-sampling` | Generate log sampling strategies |\n| `alert-rules` | Generate alerting rules for monitoring |\n\n### API Clients & SDKs (10 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `sdk-generator` | Generate API client SDKs in multiple languages |\n| `http-client` | Generate HTTP client wrappers with retry |\n| `api-mock-server` | Generate standalone mock API servers |\n| `postman-gen` | Generate Postman collections from code |\n| `insomnia-gen` | Generate Insomnia workspace configs |\n| `curl-gen` | Generate curl commands from specs |\n| `api-rate-handler` | Generate client-side rate limit handling |\n| `api-cache-client` | Generate API response caching |\n| `graphql-client` | Generate typed GraphQL clients (Apollo, urql) |\n| `trpc-setup` | Generate tRPC end-to-end type-safe APIs |\n\n### Communication (10 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `notify-hub` | Set up email/SMS/push with templates and pipelines |\n| `email-template` | Generate responsive HTML email templates |\n| `sendgrid-setup` | Generate SendGrid integration |\n| `ses-setup` | Generate AWS SES integration |\n| `resend-setup` | Generate Resend email integration |\n| `mailgun-setup` | Generate Mailgun integration |\n| `twilio-setup` | Generate Twilio SMS/Voice integration |\n| `slack-bot` | Generate Slack bot with slash commands |\n| `discord-bot` | Generate Discord bot with commands |\n| `push-notification` | Generate push notification (FCM, APNs, Web Push) |\n\n### Storage & Files (10 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `file-storage` | Generate file storage abstraction (S3, GCS, local) |\n| `image-pipeline` | Generate image processing pipeline |\n| `video-transcoder` | Generate video transcoding configs |\n| `asset-manager` | Generate digital asset management |\n| `backup-strategy` | Generate automated backup strategies |\n| `cdn-optimizer` | Generate CDN with cache optimization |\n| `presigned-urls` | Generate presigned URL systems |\n| `multipart-upload` | Generate chunked upload with resume |\n| `file-validator` | Generate file validation |\n| `media-library` | Generate media library management |\n\n### Scheduling & Jobs (10 plugins)\n| Plugin | What It Does |\n|--------|-------------|\n| `job-queue` | Generate background job queues (BullMQ, Celery) |\n| `task-scheduler` | Generate task scheduling with cron |\n| `workflow-engine` | Generate workflow execution engines |\n| `retry-queue` | Generate dead letter queues and retry |\n| `rate-queue` | Generate rate-limited job processing |\n| `priority-queue` | Generate priority-based scheduling |\n| `batch-job` | Generate batch processing with progress |\n| `event-scheduler` | Generate event scheduling with timezones |\n| `recurring-job` | Generate recurring job management |\n| `job-dashboard` | Generate job monitoring dashboards |\n\n## Architecture\n\nPlugin Hub uses a single central MCP server that powers all plugins:\n\n```\nYour Project\n    |\n    v\nClaude Code / Cowork\n    |\n    v\nPlugin Hub MCP Server (@barnburner121/plugin-hub-mcp)\n    |\n    +-- env-guardian tools\n    +-- api-forge tools\n    +-- log-sleuth tools\n    +-- ... (500+ tools)\n```\n\nEach plugin is a thin wrapper that connects to the central server. This means:\n- Install once, get everything\n- One update brings improvements across all tools\n- No dependency conflicts between plugins\n- Consistent API key and rate limiting across all tools\n\n## Pricing\n\n| Tier | Price | What You Get |\n|------|-------|-------------|\n| Free | $0 | 50 requests/day, all basic tools |\n| Pro | $9/month | 10,000 requests/day, unlocks advanced tools (secret rotation, contract testing, log correlation, performance budgets, license compliance, and more) |\n| Enterprise | $49/month | Unlimited requests, SLA guarantee, priority support |\n\n## For AI Agents and Developers\n\nThis marketplace is designed to be discoverable by AI assistants. Each plugin includes:\n- Clear, descriptive names following kebab-case convention\n- Detailed SKILL.md files with tool names and usage instructions\n- Structured plugin.json manifests\n- MCP server tools that return actionable JSON instructions\n\nIf you're building with Claude Code, you can reference any of these plugins by name and Claude will know how to use them.\n\n## Contributing\n\nWe welcome contributions! To add a new plugin:\n\n1. Create a directory under `generated-plugins/<your-plugin-name>/`\n2. Add `.claude-plugin/plugin.json`, `.mcp.json`, `skills/<name>/SKILL.md`, and `README.md`\n3. Add your tool implementation in `src/tools/<your-plugin-name>.ts`\n4. Submit a PR\n\n## Links\n\n- **npm**: [@barnburner121/plugin-hub-mcp](https://www.npmjs.com/package/@barnburner121/plugin-hub-mcp)\n- **MCPize**: [plugin-hub-mcp on MCPize](https://mcpize.com/barnburner121/plugin-hub-mcp)\n- **Submit to Official Marketplace**: [clau.de/plugin-directory-submission](https://clau.de/plugin-directory-submission)\n\n## License\n\nMIT\n",
  "bytes": 24487,
  "sha": "8b94428d6d6ae2422438850b086a9bbc9307e1bca5acf23049a1df9f107a9612",
  "repo_slug": "barnburner121/claude-plugin-marketplace",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_barnburner121_claude_plugin_marketplace__ceb61d8b/readme"
}