For the complete documentation index, see llms.txt. This page is also available as Markdown.

config plugins move

Move a plugin between categories or reorder within a category

Synopsis

Move a plugin entry between categories and/or reorder within a category. Plugin execution order matters, so use this command to control both categorization and position in the execution pipeline.

mcpd config plugins move [flags]

Examples

  # Move to different category
  mcpd config plugins move --category=authentication --name=jwt-auth --to-category=audit

  # Move to different category at specific position
  mcpd config plugins move --category=authentication --name=jwt-auth --to-category=audit --position=1

  # Move before another plugin (same category)
  mcpd config plugins move --category=authentication --name=jwt-auth --before=oauth

  # Move after another plugin (same category)
  mcpd config plugins move --category=authentication --name=jwt-auth --after=api-key

  # Move to specific position (same category)
  mcpd config plugins move --category=authentication --name=jwt-auth --position=1

Options

Options inherited from parent commands

SEE ALSO

Auto generated by spf13/cobra on 14-Aug-2026

Last updated