We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/itripleg/moha-maven'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
maven•405 B
#!/usr/bin/env python3
"""
Maven CLI - Direct invocation script.
This allows running `./maven` or `python maven` directly without installation.
For installed usage, run: pip install -e . && maven
"""
import sys
import os
# Add parent directory to path for direct invocation
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from cli.main import main
if __name__ == '__main__':
main()