We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lsaavedr/mcp-duty-pharma'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•300 B
# SPDX-FileCopyrightText: 2025-present Luis Saavedra <luis94855510@gmail.com>
#
# SPDX-License-Identifier: MIT
"""Command-line interface."""
from .duty_pharma import mcp
def entry_point() -> None:
"""Entry point for the package."""
mcp.run()
if __name__ == "__main__":
entry_point()