discover-plugins.md +56 −2
24 24
25## Official Anthropic marketplace25## Official Anthropic marketplace
26 26
2727The official Anthropic marketplace (`claude-plugins-official`) is automatically installed when you start Claude Code. You can browse its plugins immediately by running `/plugin` and going to the **Discover** tab.The official Anthropic marketplace (`claude-plugins-official`) is automatically available when you start Claude Code. Run `/plugin` and go to the **Discover** tab to browse what's available.
28 28
29To install a plugin from the official marketplace:29To install a plugin from the official marketplace:
30 30
32/plugin install plugin-name@claude-plugins-official32/plugin install plugin-name@claude-plugins-official
33```33```
34 34
35The official marketplace includes several categories of plugins:
36
37### Code intelligence
38
39Code intelligence plugins help Claude understand your codebase more deeply. With these plugins installed, Claude can jump to definitions, find references, and see type errors immediately after edits. These plugins use the [Language Server Protocol](https://microsoft.github.io/language-server-protocol/) (LSP), the same technology that powers VS Code's code intelligence.
40
41These plugins require the language server binary to be installed on your system. If you already have a language server installed, Claude may prompt you to install the corresponding plugin when you open a project.
42
43| Language | Plugin | Binary required |
44| :--------- | :------------------ | :--------------------------- |
45| C/C++ | `clangd-lsp` | `clangd` |
46| C# | `csharp-lsp` | `csharp-ls` |
47| Go | `gopls-lsp` | `gopls` |
48| Java | `jdtls-lsp` | `jdtls` |
49| Lua | `lua-lsp` | `lua-language-server` |
50| PHP | `php-lsp` | `intelephense` |
51| Python | `pyright-lsp` | `pyright-langserver` |
52| Rust | `rust-analyzer-lsp` | `rust-analyzer` |
53| Swift | `swift-lsp` | `sourcekit-lsp` |
54| TypeScript | `typescript-lsp` | `typescript-language-server` |
55
56You can also [create your own LSP plugin](/en/plugins-reference#lsp-servers) for other languages.
57
58<Note>
59 If you see `Executable not found in $PATH` in the `/plugin` Errors tab after installing a plugin, install the required binary from the table above.
60</Note>
61
62### External integrations
63
64These plugins bundle pre-configured [MCP servers](/en/mcp) so you can connect Claude to external services without manual setup:
65
66* **Source control**: `github`, `gitlab`
67* **Project management**: `atlassian` (Jira/Confluence), `asana`, `linear`, `notion`
68* **Design**: `figma`
69* **Infrastructure**: `vercel`, `firebase`, `supabase`
70* **Communication**: `slack`
71* **Monitoring**: `sentry`
72
73### Development workflows
74
75Plugins that add commands and agents for common development tasks:
76
77* **commit-commands**: Git commit workflows including commit, push, and PR creation
78* **pr-review-toolkit**: Specialized agents for reviewing pull requests
79* **agent-sdk-dev**: Tools for building with the Claude Agent SDK
80* **plugin-dev**: Toolkit for creating your own plugins
81
82### Output styles
83
84Customize how Claude responds:
85
86* **explanatory-output-style**: Educational insights about implementation choices
87* **learning-output-style**: Interactive learning mode for skill building
88
35## Try it: add the demo marketplace89## Try it: add the demo marketplace
36 90
3791Anthropic also maintains a [demo plugins marketplace](https://github.com/anthropics/claude-code/tree/main/plugins) with example plugins that show what's possible with the plugin system. Unlike the official marketplace, you need to add this one manually.Anthropic also maintains a [demo plugins marketplace](https://github.com/anthropics/claude-code/tree/main/plugins) (`claude-code-plugins`) with example plugins that show what's possible with the plugin system. Unlike the official marketplace, you need to add this one manually.
38 92
39<Steps>93<Steps>
40 <Step title="Add the marketplace">94 <Step title="Add the marketplace">