MCPcopy Index your code
hub / github.com/Zipstack/unstract / is_plugin_enabled

Method is_plugin_enabled

workers/plugin_registry.py:102–105  ·  view source on GitHub ↗

Check if a plugin is enabled.

(self, name: str)

Source from the content-addressed store, hash-verified

100 return plugins
101
102 def is_plugin_enabled(self, name: str) -> bool:
103 """Check if a plugin is enabled."""
104 config = self._plugin_configs.get(name, {})
105 return config.get("enabled", False)
106
107 def get_plugin_config(self, name: str) -> dict[str, Any]:
108 """Get plugin configuration."""

Callers 1

is_plugin_enabledFunction · 0.80

Calls 1

getMethod · 0.45

Tested by

no test coverage detected