We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/p1va/symbols-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// eslint.config.js
import tseslint from 'typescript-eslint';
import prettierConfig from 'eslint-config-prettier';
export default tseslint.config(
// Add a global ignore for the dist directory, this config file, playground, and test JS files
{
ignores: [
'dist',
'eslint.config.js',
'playground',
'test/**/*.js',
'.external',
'test-results/**',
],
},
// Apply the recommended and type-checked rulesets
...tseslint.configs.recommendedTypeChecked,
// This object configures the parser for type-aware linting.
// It tells typescript-eslint where to find your tsconfig.json.
{
languageOptions: {
parserOptions: {
project: true,
tsconfigRootDir: import.meta.dirname,
},
},
rules: {
curly: 'warn',
},
},
// Apply the Prettier config last to override any formatting rules.
prettierConfig
);