Skip to main content
Glama

mcp-gitlab

by atla-digital
eslint.config.js1.58 kB
import js from '@eslint/js'; import tseslint from '@typescript-eslint/eslint-plugin'; import tsparser from '@typescript-eslint/parser'; import prettier from 'eslint-plugin-prettier'; import prettierConfig from 'eslint-config-prettier'; export default [ js.configs.recommended, prettierConfig, { files: ['src/**/*.ts'], languageOptions: { parser: tsparser, parserOptions: { ecmaVersion: 2022, sourceType: 'module', }, globals: { console: 'readonly', process: 'readonly', Buffer: 'readonly', setInterval: 'readonly', clearInterval: 'readonly', setTimeout: 'readonly', clearTimeout: 'readonly', URL: 'readonly', NodeJS: 'readonly', }, }, plugins: { '@typescript-eslint': tseslint, prettier: prettier, }, rules: { ...tseslint.configs.recommended.rules, 'prettier/prettier': 'error', '@typescript-eslint/no-unused-vars': 'error', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/no-non-null-assertion': 'warn', 'no-console': 'off', // Allow console for now (will be replaced with structured logging) 'prefer-const': 'error', 'no-var': 'error', }, }, { files: ['**/*.js', '**/*.mjs'], languageOptions: { ecmaVersion: 2022, sourceType: 'module', }, rules: { 'no-console': 'off', }, }, { ignores: ['build/**', 'node_modules/**', '*.d.ts'], }, ];

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/atla-digital/mcp-gitlab'

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