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_stdio.py•351 B
#!/usr/bin/env python3
"""Run GitLab MCP Server with stdio 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 stdio transport...", file=sys.stderr)
mcp.run(transport="stdio")