Skip to main content
Glama

Mattermost MCP Server

eslint.config.js1.6 kB
// @ts-check const tsParser = require('@typescript-eslint/parser'); const tsPlugin = require('@typescript-eslint/eslint-plugin'); const importPlugin = require('eslint-plugin-import'); const prettierPlugin = require('eslint-plugin-prettier'); /** @type {import('eslint').Linter.FlatConfig[]} */ module.exports = [ { files: ['**/*.ts'], languageOptions: { ecmaVersion: 2022, sourceType: 'module', parser: tsParser, parserOptions: { project: './tsconfig.json', }, }, plugins: { '@typescript-eslint': tsPlugin, 'import': importPlugin, 'prettier': prettierPlugin, }, rules: { '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }], 'import/order': [ 'error', { 'newlines-between': 'always', 'alphabetize': { 'order': 'asc', 'caseInsensitive': true } } ], 'no-console': 'warn', 'no-return-await': 'error', 'prettier/prettier': ['error', { 'singleQuote': true, 'trailingComma': 'all', 'printWidth': 100, 'tabWidth': 2, 'semi': true }] } }, { ignores: [ 'node_modules/**', 'dist/**', 'build/**', '**/*.js.map', '**/*.d.ts', 'coverage/**', '.vscode/**', '.idea/**', 'eslint.config.js' ] } ];

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/Wagmi-Tech-Co/mcp-mattermost'

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