get_commits
Retrieve recent commits from a GitLab project by providing the project ID and optional branch name.
Instructions
Get recent commits for a project.
Args:
project_id: GitLab project ID
ref_name: Branch name (default: main)
token: GitLab Personal Access Token (optional)
ctx: MCP context (automatically injected)Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ||
| ref_name | No | main | |
| token | No | ||
| ctx | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Implementation Reference
- The get_commits tool handler: fetches recent commits from the GitLab API, formats them with short_id, title (truncated to 60 chars), and author name. Returns up to 10 commits.
@mcp.tool() async def get_commits(project_id: int, ref_name: str = "main", token: str = None, ctx=None) -> str: """Get recent commits for a project. Args: project_id: GitLab project ID ref_name: Branch name (default: main) token: GitLab Personal Access Token (optional) ctx: MCP context (automatically injected) """ endpoint = f"/projects/{project_id}/repository/commits?ref_name={ref_name}" data = await make_gitlab_request(endpoint, ctx=ctx, token=token) if isinstance(data, dict) and "error" in data: return f"Error: {data['error']}" if not data: return "No commits found." commits = [] for commit in data[:10]: short_id = commit['short_id'] title = commit['title'][:60] + ('...' if len(commit['title']) > 60 else '') author = commit['author_name'] commits.append(f"• {short_id}: {title} ({author})") return "\n".join(commits) - gitlab_clone_mcp_server/server.py:339-339 (registration)The tool is registered using the @mcp.tool() decorator on the get_commits async function, which registers it with FastMCP under the name 'get_commits'.
@mcp.tool() - The function signature and docstring define the schema: project_id (int, required), ref_name (str, default 'main'), token (optional), and ctx (injected context).
async def get_commits(project_id: int, ref_name: str = "main", token: str = None, ctx=None) -> str: """Get recent commits for a project. Args: project_id: GitLab project ID ref_name: Branch name (default: main) token: GitLab Personal Access Token (optional) ctx: MCP context (automatically injected) """ - The make_gitlab_request helper function used by get_commits to make HTTP requests to the GitLab API with token resolution from explicit param, request context headers, or environment variable.
async def make_gitlab_request(endpoint: str, method: str = "GET", data: dict = None, ctx=None, token: str = None) -> dict[str, Any] | None: """Make a request to GitLab API with proper error handling.""" # Priority: 1. Explicit token parameter, 2. Context headers, 3. Environment variable # If no explicit token provided, try to get from context if not token and ctx and hasattr(ctx, 'request_context') and ctx.request_context: # Try to get from request headers if hasattr(ctx.request_context, 'headers'): token = ctx.request_context.headers.get('GITLAB_TOKEN') # Fallback to environment variable if not token: token = os.getenv("GITLAB_TOKEN") if not token: return {"error": "GitLab token not provided. Please provide a token parameter, GITLAB_TOKEN in the request headers, or set the environment variable."} # Get GitLab URL (from context or environment) gitlab_url = os.getenv("GITLAB_URL", "https://gitlab.com") headers = { "PRIVATE-TOKEN": token, "Content-Type": "application/json" } url = f"{gitlab_url}/api/v4{endpoint}" async with httpx.AsyncClient() as client: try: if method == "GET": response = await client.get(url, headers=headers, timeout=30.0) elif method == "POST": response = await client.post(url, headers=headers, json=data, timeout=30.0) elif method == "PUT": response = await client.put(url, headers=headers, json=data, timeout=30.0) elif method == "DELETE": response = await client.delete(url, headers=headers, timeout=30.0) response.raise_for_status() return response.json() if response.content else {"success": True} except Exception as e: return {"error": str(e)}