We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vectara/vectara-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•305 B
"""
Vectara MCP Server
A Model Context Protocol server for Vectara Trusted Generative AI.
"""
from ._version import __version__
# Import main function for compatibility
from .server import main, mcp
# Define what gets imported with "from vectara-mcp import *"
__all__ = ["mcp", "main", "__version__"]