Skip to main content
Glama

XC-MCP: XCode CLI wrapper

by conorluddy
eslint.config.js1.9 kB
import eslint from '@eslint/js'; import tseslint from '@typescript-eslint/eslint-plugin'; import tsparser from '@typescript-eslint/parser'; import prettier from 'eslint-config-prettier'; import prettierPlugin from 'eslint-plugin-prettier'; export default [ eslint.configs.recommended, { files: ['src/**/*.ts'], languageOptions: { parser: tsparser, parserOptions: { ecmaVersion: 2020, sourceType: 'module', }, globals: { console: 'readonly', process: 'readonly', Buffer: 'readonly', __dirname: 'readonly', __filename: 'readonly', global: 'readonly', module: 'readonly', require: 'readonly', exports: 'readonly', NodeJS: 'readonly', setTimeout: 'readonly', clearTimeout: 'readonly', setInterval: 'readonly', clearInterval: 'readonly', }, }, plugins: { '@typescript-eslint': tseslint, prettier: prettierPlugin, }, rules: { ...tseslint.configs.recommended.rules, ...prettier.rules, // TypeScript specific rules '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }], '@typescript-eslint/no-explicit-any': 'warn', '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-non-null-assertion': 'warn', // General rules 'no-console': 'off', // Allow console.error for MCP server logging 'prefer-const': 'error', 'no-var': 'error', // Prettier integration 'prettier/prettier': 'error', }, }, { ignores: [ 'dist/**/*', 'node_modules/**/*', '*.js', // Ignore JS files in root 'eslint.config.js', // Ignore this config file itself ], }, ];

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/conorluddy/xc-mcp'

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