Skip to main content
Glama

Backlog MCP Server

eslint.config.js1.12 kB
import js from '@eslint/js'; import parser from '@typescript-eslint/parser'; import plugin from '@typescript-eslint/eslint-plugin'; /** @type {import("eslint").Linter.FlatConfig[]} */ export default [ { ignores: ['build/**', 'node_modules/**'], }, js.configs.recommended, { files: ['**/*.ts'], languageOptions: { parser: parser, parserOptions: { ecmaVersion: 'latest', sourceType: 'module', }, globals: { process: 'readonly', console: 'readonly', }, }, plugins: { '@typescript-eslint': plugin, }, rules: { ...plugin.configs.recommended.rules, '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }], 'no-console': ['warn', { allow: ['warn', 'error'] }] }, }, { files: ['**/*.test.ts'], rules: { '@typescript-eslint/no-explicit-any': 'off', // Allow on unit tests }, }, { files: ['**/*.js'], languageOptions: { ecmaVersion: 'latest', sourceType: 'module', globals: { console: 'readonly', }, }, } ];

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/nulab/backlog-mcp-server'

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