paperclipai/paperclip · error · Error
Paperclip plugin UI component "${name}" is not callable
Error message
Paperclip plugin UI component "${name}" is not callable What it means
Error "Paperclip plugin UI component "${name}" is not callable" thrown in paperclipai/paperclip.
Source
Thrown at packages/plugins/sdk/src/ui/runtime.ts:50
name: string,
props: TProps,
): unknown {
const registry = getBridgeRegistry();
const component = registry?.sdkUi?.[name];
if (component === undefined) {
throw missingBridgeValueError(name);
}
const createElement = registry?.react?.createElement;
if (typeof createElement === "function") {
return createElement(component, props as Record<string, unknown>);
}
if (typeof component === "function") {
return component(props);
}
throw new Error(`Paperclip plugin UI component "${name}" is not callable`);
}
View on GitHub (pinned to 120ae5428f)
Solutions
- Register the UI component as a callable function in the plugin UI runtime.
When it happens
Trigger: Thrown at packages/plugins/sdk/src/ui/runtime.ts:50 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of paperclipai/paperclip@120ae5428f (2026-08-18).
Data as JSON: /api/errors/11377db140dc576d.
Report an issue: GitHub.