Skip to main content
Glama

Saju Fortune-Telling MCP Server

by hjsh200219
eslint.config.js1.33 kB
import eslint from '@eslint/js'; import tseslint from '@typescript-eslint/eslint-plugin'; import tsparser from '@typescript-eslint/parser'; export default [ eslint.configs.recommended, { files: ['**/*.ts'], languageOptions: { parser: tsparser, parserOptions: { ecmaVersion: 'latest', sourceType: 'module', }, globals: { console: 'readonly', process: 'readonly', setTimeout: 'readonly', clearTimeout: 'readonly', setInterval: 'readonly', clearInterval: 'readonly', fetch: 'readonly', AbortController: 'readonly', NodeJS: 'readonly', }, }, plugins: { '@typescript-eslint': tseslint, }, rules: { ...tseslint.configs.recommended.rules, '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-unused-vars': [ 'warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_', }, ], 'no-console': 'off', 'no-undef': 'off', // TypeScript가 처리함 }, }, { files: ['src/index.ts', 'src/tools/**/*.ts'], rules: { '@typescript-eslint/no-explicit-any': 'off', // MCP SDK 타입 호환성을 위해 필요 }, }, { ignores: ['dist/**', 'node_modules/**', '*.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/hjsh200219/fortuneteller'

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