We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yshalsager/mcp-4get'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•233 B
"""Entry point for running the 4get MCP server."""
from __future__ import annotations
from src.server import create_server
def main() -> None:
server = create_server()
server.run()
if __name__ == '__main__':
main()