paperclip_get_plugin
Retrieve detailed information about a specific plugin by its key, including version, status, and configuration. Choose markdown or JSON output for integration.
Instructions
⚠ Board-only: Get detailed information about a specific plugin by its key.
Args:
pluginKey: string — Plugin key (e.g. 'paperclip.hello-world-example' or '@acme/plugin-linear'). URL-encoded automatically.
response_format: 'markdown' | 'json' (optional) — Output format (default: markdown)
Returns: Plugin object: pluginKey, packageName, displayName, description, status, version, config, health.
Examples:
Use when: inspecting a specific plugin's status, version, or configuration before enabling it
Don't use when: you need to list all plugins — use paperclip_list_plugins instead
Error Handling:
404: plugin not found → verify pluginKey with paperclip_list_plugins
401: authentication failed → check PAPERCLIP_API_KEY
403: permission denied → this tool requires a board (human-user) API key
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pluginKey | Yes | Plugin key (e.g. 'paperclip.hello-world-example' or '@acme/plugin-linear') | |
| response_format | Yes | Output format: 'markdown' (default) or 'json' (structured) | markdown |