Skip to main content
Glama

mcp-gitlab-jira

get-release-notes.cjs610 B
/* eslint-disable @typescript-eslint/no-require-imports */ const fs = require('fs'); const path = require('path'); const changelogPath = path.join(process.cwd(), 'CHANGELOG.md'); let changelog; try { changelog = fs.readFileSync(changelogPath, 'utf8'); } catch (err) { console.error('CHANGELOG.md not found in project root'); process.exit(1); } const releaseNotesRegex = /## \[\d+\.\d+\.\d+\] - \d{4}-\d{2}-\d{2}([\s\S]*?)(?=## \[|$)/; const match = changelog.match(releaseNotesRegex); if (match && match[1]) { console.log(match[1].trim()); } else { console.log('Could not find release notes.'); }

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

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