We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/skmprb/gitlab-clone-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_streamable_http.py•364 B
#!/usr/bin/env python3
"""Run GitLab MCP Server with Streamable HTTP transport."""
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).parent.parent))
from gitlab_clone_mcp_server.server import mcp
if __name__ == "__main__":
print("Starting GitLab MCP Server with Streamable HTTP transport...")
mcp.run(transport="streamable-http")