We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sker65/testrail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•388 B
"""Entry point for the TestRail MCP server when run as a module."""
import sys
import asyncio
from testrail_mcp.mcp_server import TestRailMCPServer
def main():
"""Run the TestRail MCP server."""
print("Starting TestRail MCP server in stdio mode", file=sys.stderr)
server = TestRailMCPServer()
asyncio.run(server.run_stdio_async())
if __name__ == "__main__":
main()