We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rkilchmn/chroma-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•425 B
"""
ChromaDB MCP Server Package
A Model Context Protocol (MCP) server that exposes ChromaDB vector database operations as MCP tools.
"""
__version__ = "0.1.0"
__all__ = ["main"]
# Lazy import to avoid RuntimeWarning when using python -m
def __getattr__(name):
if name == "main":
from .chroma_mcp_server import main
return main
raise AttributeError(f"module '{__name__}' has no attribute '{name}'")