Skip to main content
Glama

Timezone MCP Server

by sam-artuso
eslint.config.mjsβ€’1.68 kB
import eslint 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 [ eslint.configs.recommended, { files: ['**/*.ts'], plugins: { '@typescript-eslint': tseslint, prettier: prettier, }, languageOptions: { parser: tsparser, parserOptions: { project: './tsconfig.json', sourceType: 'module', }, globals: { console: 'readonly', process: 'readonly', __dirname: 'readonly', __filename: 'readonly', module: 'readonly', require: 'readonly', exports: 'readonly', }, }, rules: { ...tseslint.configs.recommended.rules, ...prettierConfig.rules, '@typescript-eslint/interface-name-prefix': 'off', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-explicit-any': 'error', '@typescript-eslint/consistent-type-assertions': [ 'error', { assertionStyle: 'as', objectLiteralTypeAssertions: 'allow-as-parameter', }, ], 'no-restricted-syntax': [ 'error', { selector: 'TSAsExpression > TSUnknownKeyword', message: 'Avoid using "as unknown as Type" double assertions. Fix the types properly instead.', }, ], 'prettier/prettier': 'error', }, }, { ignores: ['node_modules', 'dist', 'coverage'], }, ];

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/sam-artuso/demo-mcp'

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