Skip to main content
Glama

MCPControl

eslint.config.js1.49 kB
import eslint from '@eslint/js'; import tseslint from 'typescript-eslint'; // Create a simplified configuration that only lints src TypeScript files export default tseslint.config( { ignores: [ 'build/**', 'coverage/**', '*.html', 'mcpcontrol-wrapper.sh', 'eslint.config.js', '.github/**', 'scripts/**', 'test/**' ] }, { files: ['src/**/*.ts'], extends: [ eslint.configs.recommended, ...tseslint.configs.recommended, ...tseslint.configs.recommendedTypeChecked ], languageOptions: { parserOptions: { project: true, tsconfigRootDir: import.meta.dirname, }, }, rules: { 'no-console': 'off', '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/explicit-module-boundary-types': 'error', '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }], } }, { // Test files specific configuration files: ['src/**/*.test.ts', 'src/**/*.spec.ts'], rules: { '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/no-unsafe-assignment': 'off', '@typescript-eslint/no-unsafe-member-access': 'off', '@typescript-eslint/no-unsafe-call': 'off', '@typescript-eslint/no-unsafe-return': 'off', '@typescript-eslint/no-unsafe-argument': 'off', '@typescript-eslint/unbound-method': '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/claude-did-this/MCPControl'

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