Skip to main content
Glama

GitLab Jira Context MCP

TypeScript Node.js Model Context Protocol GitLab Jira Grafana

A local Model Context Protocol (MCP) server that connects GitLab project and merge-request context with Jira work tracking, Confluence pages, and Grafana dashboards. Jira comments and worklogs can be added only with explicit confirmation.

The server uses stdio and runs on your machine. It sends requests only to the service URLs that you configure locally.

Architecture

flowchart LR
  Client[VS Code / MCP Client] <-->|stdio| Server[GitLab Jira Context MCP]
  Server -->|REST API| GitLab[GitLab]
  Server -->|REST API| Jira[Jira]
  Server -. optional REST API .-> Confluence[Confluence]
  Server -. optional REST API .-> Grafana[Grafana]
  Config[Local .env] -. credentials and URLs .-> Server

The server never exposes an HTTP endpoint or persists service data. Tokens stay in your local .env file or process environment.

Related MCP server: gitlab-mcp

Included Tools

Tool

Description

gitlab_list_projects

List projects visible to the configured GitLab token.

gitlab_get_project

Get a project by ID or path.

gitlab_list_merge_requests

List merge requests, optionally for one project.

gitlab_get_merge_request

Get a merge request and its metadata.

gitlab_list_pipelines

List recent CI/CD pipelines for a project.

gitlab_get_file

Get a repository file at a branch, tag, or commit.

jira_get_my_issues

List issues assigned to the authenticated Jira user.

jira_get_issue

Get an issue by key, including comments.

jira_search_issues

Search issues with JQL.

jira_get_transitions

List workflow transitions available for an issue.

jira_get_changelog

Get issue status and field history.

jira_list_comments

List comments on an issue with startAt pagination.

jira_list_worklogs

List worklog entries on an issue with startAt pagination.

jira_add_comment

Add a comment after passing confirm: true.

jira_add_worklog

Add a worklog entry after passing confirm: true.

confluence_get_page

Get a Confluence page and its stored content.

confluence_search

Search Confluence content with CQL.

grafana_search_dashboards

Search dashboards visible to the configured service account.

grafana_get_dashboard

Get a Grafana dashboard by UID.

GitLab, Confluence, and Grafana tools are read-only. Jira mutations require an explicit confirm: true input and use the permissions of the configured Jira token.

Jira search, comments, and worklogs return the service's pagination metadata. When total exceeds the number of returned entries, call the same tool with a later startAt value. jira_add_worklog accepts Jira duration syntax such as 1h 30m and an optional ISO 8601 started timestamp.

Repository Structure

gitlab-jira-context-mcp/
├── src/
│   ├── client.ts       # HTTP clients, authentication, and request helpers
│   └── server.ts       # MCP tool registration and input schemas
├── test/
│   └── client.test.ts  # Focused helper and request-payload tests
├── .env.example        # Neutral local configuration template
├── package.json        # Scripts and dependencies
└── tsconfig.json       # TypeScript configuration

Requirements

  • Node.js 20 or newer

  • An MCP client with stdio server support, such as Visual Studio Code with GitHub Copilot

  • A GitLab personal access token with access to the projects you need

  • A Jira Server or Data Center personal access token

  • Optional: a Confluence Server or Data Center personal access token

  • Optional: a Grafana service account token with dashboard read access

Quick Start

  1. Clone the repository and install dependencies.

    git clone https://github.com/jagarkarlo/gitlab-jira-context-mcp.git
    cd gitlab-jira-context-mcp
    npm install
    npm test
    npm run build
  2. Create your local configuration.

    cp .env.example .env

    Set GITLAB_BASE_URL, GITLAB_TOKEN, JIRA_BASE_URL, and JIRA_API_TOKEN. Confluence and Grafana are optional; set both variables in either integration's pair to enable its tools. Keep .env local; it is ignored by Git.

  3. Register the compiled server in your MCP client. In VS Code, run MCP: Open User Configuration and add this entry to the servers object. Replace /absolute/path/to with the cloned repository path.

    {
      "servers": {
        "gitlab-jira-context": {
          "type": "stdio",
          "command": "node",
          "args": [
            "/absolute/path/to/gitlab-jira-context-mcp/dist/server.js"
          ]
        }
      }
    }
  4. Restart the server from MCP: List Servers or reload VS Code.

Security

  • The server reads credentials only from the local .env file or process environment.

  • Use tokens with the smallest access scope that supports your intended requests.

  • Review the configured service URLs before starting the server.

  • Do not place credentials in source files, MCP configuration, issue comments, or commits.

  • Verify the issue key, work duration, and content before setting confirm: true for a Jira write.

Configuration Boundaries

Integration

Required

Access

GitLab

Yes

Read-only projects, merge requests, pipelines, and repository files.

Jira

Yes

Read issues, comments, worklogs, transitions, and changelog; confirmed comment/worklog writes.

Confluence

Optional

Read-only page lookup and CQL search.

Grafana

Optional

Read-only dashboard search and retrieval.

Development

Run the checks before committing changes:

npm test
npm run build
git diff --check

src/client.ts contains the HTTP and response-handling helpers. src/server.ts registers the MCP tools and their input schemas. Tests cover the shared client helpers; add focused tests when changing behavior.

Roadmap

Future releases can add GitLab merge-request discussions and project search, while retaining explicit confirmation for every write operation.

License

This project is licensed under the MIT License.

Install Server
A
license - permissive license
B
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    A read-only MCP server that enables querying and searching Atlassian Confluence pages and Jira issues through their REST APIs. Supports retrieving content by ID or URL, searching using CQL/JQL, and listing spaces and projects.
    1
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    MCP server for interacting with GitLab API, supporting both self-hosted instances and gitlab.com. Provides tools for managing issues, merge requests, code review, pipelines, milestones, releases, search, and file access.
    703
    MIT

View all related MCP servers

Related MCP Connectors

  • A MCP server built for developers enabling Git based project management with project and personal…

  • An MCP server giving access to Grafana dashboards, data and more.

  • Go MCP server for GitLab: 2 dynamic tools reach 1000+ REST/GraphQL actions. Free/CE, no paid tier.

View all MCP Connectors

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/jagarkarlo/gitlab-jira-context-mcp'

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