We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/turingmindai/turingmind-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•376 B
"""
TuringMind MCP Server
Model Context Protocol server for TuringMind cloud integration.
Provides type-safe tools for Claude to authenticate, upload code reviews,
fetch repository context, and submit feedback.
"""
__version__ = "0.2.0"
__author__ = "TuringMind"
__email__ = "support@turingmind.ai"
from turingmind_mcp.server import main
__all__ = ["main", "__version__"]