We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/call518/MCP-PostgreSQL-Ops'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•289 B
"""MCP Server package.
This module exposes the `mcp` FastMCP instance for convenience.
Importing this package will not start the server; use the CLI entrypoint or
call `mcp.run()` explicitly in your own launcher if needed.
"""
from .mcp_main import mcp # noqa: F401
__all__ = ["mcp"]