Skip to main content
Glama

Restaurant Booking MCP Server

eslint.config.js1.3 kB
import eslint from '@eslint/js'; import tseslint from '@typescript-eslint/eslint-plugin'; import tsparser from '@typescript-eslint/parser'; import globals from 'globals'; export default [ eslint.configs.recommended, { files: ['src/**/*.ts'], languageOptions: { parser: tsparser, parserOptions: { ecmaVersion: 'latest', sourceType: 'module', }, globals: { ...globals.node, NodeJS: 'readonly', }, }, plugins: { '@typescript-eslint': tseslint, }, rules: { '@typescript-eslint/no-unused-vars': [ 'error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_', caughtErrorsIgnorePattern: '^_', }, ], '@typescript-eslint/no-explicit-any': 'warn', 'prefer-const': 'error', 'no-var': 'error', 'no-unused-vars': 'off', // Let TypeScript handle this }, }, { files: ['src/**/*.test.ts', 'src/tests/**/*.ts'], languageOptions: { globals: { ...globals.node, ...globals.jest, performance: 'readonly', test: 'readonly', NodeJS: 'readonly', }, }, rules: { '@typescript-eslint/no-explicit-any': 'off', // Allow any in tests for mocking }, }, ];

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/samwang0723/mcp-booking'

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