We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ViperJuice/Code-Index-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•374 B
"""C plugin for Code-Index-MCP."""
import os
# Use semantic plugin if enabled, otherwise fallback to basic plugin
if os.getenv("SEMANTIC_SEARCH_ENABLED", "false").lower() == "true":
try:
from .plugin_semantic import CPluginSemantic as Plugin
except ImportError:
from .plugin import Plugin
else:
from .plugin import Plugin
__all__ = ["Plugin"]