We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/GetSherlog/Sherlog-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
sherlog_mcp_server.py•288 B
from __future__ import annotations
"""Sherlog MCP Server entry point.
This module serves as the main entry point for the Sherlog MCP server.
All functionality is implemented in :pyfile:`sherlog_mcp/main.py`.
"""
from sherlog_mcp.main import main
if __name__ == "__main__":
main()