Skip to main content
Glama
boecht

BitSight Community MCP Server

by boecht
__init__.py769 B
"""Package data helpers for BiRRe.""" from collections.abc import Iterator from importlib import resources as _resources try: from importlib.resources.abc import Traversable except ImportError: # pragma: no cover - fallback for older interpreters from importlib.abc import Traversable from typing import Protocol, cast __all__ = ["iter_data_files"] def iter_data_files(pattern: str) -> Iterator[str]: """Yield resource paths within the package matching a suffix pattern.""" root = _resources.files(__name__) rglobber = cast(_SupportsRGlob, root) for entry in rglobber.rglob(pattern): if entry.is_file(): yield str(entry) class _SupportsRGlob(Protocol): def rglob(self, pattern: str) -> Iterator[Traversable]: ...

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/boecht/bitsight-community-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server