We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/li7hai26/torna-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•472 B
"""
Torna MCP Server
A MCP (Model Context Protocol) server for interacting with Torna API documentation platform.
This package provides tools to interact with Torna OpenAPI for managing API documentation.
Example:
from torna_mcp import torna_mcp_server
# Start the server
torna_mcp_server.run()
"""
__version__ = "0.1.0"
__author__ = "阿拉丁神灯"
__email__ = "li7hai26@gmail.com"
from .server import torna_mcp_server
__all__ = ["torna_mcp_server"]