Skip to main content
Glama

First MCP Server

by geka-evk
MIT License
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-config-prettier'; export default [ js.configs.recommended, { files: ['**/*.ts'], languageOptions: { parser: tsparser, parserOptions: { ecmaVersion: 2022, sourceType: 'module', }, globals: { console: 'readonly', process: 'readonly', Buffer: 'readonly', __dirname: 'readonly', __filename: 'readonly', global: 'readonly', module: 'readonly', require: 'readonly', exports: 'readonly', }, }, plugins: { '@typescript-eslint': tseslint, }, rules: { ...tseslint.configs.recommended.rules, '@typescript-eslint/no-explicit-any': 'error', 'no-console': 'error', 'quote-props': ['error', 'as-needed'], quotes: ['error', 'single', { allowTemplateLiterals: false }], indent: ['error', 2, { SwitchCase: 1 }], semi: ['error', 'always'], 'object-curly-spacing': ['error', 'always'], }, }, { files: ['test/**/*.ts'], languageOptions: { globals: { jest: 'readonly', describe: 'readonly', it: 'readonly', test: 'readonly', expect: 'readonly', beforeEach: 'readonly', afterEach: 'readonly', beforeAll: 'readonly', afterAll: 'readonly', }, }, rules: { // add here any rules specific to test files }, }, prettier, ];

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/geka-evk/first-mcp-server'

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