We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/k-yenko/rowan-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•257 B
"""
Main entry point for Rowan MCP Server when run as a module.
Usage:
python -m rowan_mcp # STDIO mode
python -m rowan_mcp --help # Show help
"""
if __name__ == "__main__":
# STDIO transport
from .server import main
main()