Skip to main content
Glama

Code Reasoning MCP Server

eslint.config.js1.13 kB
import js from '@eslint/js'; import globals from 'globals'; import tseslint from '@typescript-eslint/eslint-plugin'; import tsParser from '@typescript-eslint/parser'; import prettier from 'eslint-plugin-prettier'; export default [ // Add an initial configuration that ignores dist { ignores: ['dist/**/*'], }, js.configs.recommended, { files: ['**/*.{ts,js}'], languageOptions: { globals: { ...globals.node, ...globals.es2022, }, parser: tsParser, parserOptions: { ecmaVersion: 2022, sourceType: 'module', }, }, plugins: { '@typescript-eslint': tseslint, prettier, }, rules: { // TypeScript specific rules '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }], // General rules 'no-console': ['warn', { allow: ['error', 'warn', 'info', 'debug'] }], 'no-unused-vars': 'off', 'prettier/prettier': 'error', }, }, { files: ['**/test/**/*.ts'], rules: { 'no-console': 'off', }, }, ];

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/mettamatt/code-reasoning'

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