Skip to main content
Glama

boj_gitlab_get_project

Retrieve project details from GitLab by providing a project ID or URL-encoded path to access repository information and metadata.

Instructions

Get a GitLab project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesProject ID or URL-encoded path

Implementation Reference

  • The handler logic for `boj_gitlab_get_project` inside `handleGitLabTool`, which invokes `gitlabApiCall`.
    case "boj_gitlab_get_project":
      return gitlabApiCall("GET", `/projects/${encodeURIComponent(args.project_id)}`);
  • Tool registration definition for `boj_gitlab_get_project` within the MCP tool list.
    { name: "boj_gitlab_get_project", desc: "Get a GitLab project", props: { project_id: { type: "string", description: "Project ID or URL-encoded path" } }, req: ["project_id"] },
    { name: "boj_gitlab_create_issue", desc: "Create a GitLab issue", props: { project_id: { type: "string" }, title: { type: "string" }, description: { type: "string" } }, req: ["project_id", "title"] },
    { name: "boj_gitlab_list_issues", desc: "List GitLab project issues", props: { project_id: { type: "string" }, state: { type: "string", enum: ["opened", "closed", "all"] } }, req: ["project_id"] },
    { name: "boj_gitlab_create_mr", desc: "Create a merge request", props: { project_id: { type: "string" }, title: { type: "string" }, source: { type: "string" }, target: { type: "string" } }, req: ["project_id", "title", "source"] },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hyperpolymath/boj-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server