gitlab_get_project
Pack: gitlab · Endpoint: https://gateway.pipeworx.io/gitlab/mcp
Get details for a specific GitLab project (e.g., project ID “123” or path “group/project”). Returns name, description, visibility, stars, forks, and default branch.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | GitLab personal access token |
id | string | yes | Project ID (numeric) or URL-encoded path (e.g., “group%2Fproject”) |
Example call
Arguments
{
"_apiKey": "your-gitlab-api-key",
"id": "123"
}
curl
curl -X POST https://gateway.pipeworx.io/gitlab/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gitlab_get_project","arguments":{"_apiKey":"your-gitlab-api-key","id":"123"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gitlab_get_project', {
"_apiKey": "your-gitlab-api-key",
"id": "123"
});
More examples
{
"_apiKey": "your-gitlab-api-key",
"id": "group%2Fproject"
}
Response shape
Always returns: id, name, full_path, description, url, stars, forks, open_issues, default_branch, visibility, archived, namespace, topics, created_at, last_activity
| Field | Type | Description |
|---|---|---|
id | number | Project ID |
name | string | Project name |
full_path | string | Full path with namespace |
description | string | null | Project description |
url | string | Project web URL |
stars | number | Star count |
forks | number | Fork count |
open_issues | number | Open issues count |
default_branch | string | Default branch name |
visibility | string | Project visibility (public/private/internal) |
archived | boolean | Whether project is archived |
namespace | string | null | Namespace full path |
topics | array | Project topics/tags |
created_at | string | Project creation timestamp |
last_activity | string | Last activity timestamp |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Project ID"
},
"name": {
"type": "string",
"description": "Project name"
},
"full_path": {
"type": "string",
"description": "Full path with namespace"
},
"description": {
"type": [
"string",
"null"
],
"description": "Project description"
},
"url": {
"type": "string",
"description": "Project web URL"
},
"stars": {
"type": "number",
"description": "Star count"
},
"forks": {
"type": "number",
"description": "Fork count"
},
"open_issues": {
"type": "number",
"description": "Open issues count"
},
"default_branch": {
"type": "string",
"description": "Default branch name"
},
"visibility": {
"type": "string",
"description": "Project visibility (public/private/internal)"
},
"archived": {
"type": "boolean",
"description": "Whether project is archived"
},
"namespace": {
"type": [
"string",
"null"
],
"description": "Namespace full path"
},
"topics": {
"type": "array",
"items": {
"type": "string"
},
"description": "Project topics/tags"
},
"created_at": {
"type": "string",
"description": "Project creation timestamp"
},
"last_activity": {
"type": "string",
"description": "Last activity timestamp"
}
},
"required": [
"id",
"name",
"full_path",
"description",
"url",
"stars",
"forks",
"open_issues",
"default_branch",
"visibility",
"archived",
"namespace",
"topics",
"created_at",
"last_activity"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gitlab": {
"url": "https://gateway.pipeworx.io/gitlab/mcp"
}
}
}
See Getting Started for client-specific install steps.