We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Lillard01/chatExcel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
deprecate.py•506 B
import warnings
class AuthlibDeprecationWarning(DeprecationWarning):
pass
warnings.simplefilter("always", AuthlibDeprecationWarning)
def deprecate(message, version=None, link_uid=None, link_file=None, stacklevel=3):
if version:
message += f"\nIt will be compatible before version {version}."
if link_uid and link_file:
message += f"\nRead more <https://git.io/{link_uid}#file-{link_file}-md>"
warnings.warn(AuthlibDeprecationWarning(message), stacklevel=stacklevel)