We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yhai3596/MCP-chatlog'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•305 B
"""
Chatlog MCP Server
A Model Context Protocol (MCP) server for analyzing chat logs.
"""
__version__ = "1.0.0"
__author__ = "Claude Code"
__email__ = "support@anthropic.com"
__description__ = "A Model Context Protocol (MCP) server for analyzing chat logs"
from .server import main
__all__ = ["main"]