Skip to main content
Glama

Agentset

Official
by agentset-ai
eslint.config.js1.83 kB
/// <reference types="./eslint-types.d.ts" /> import * as path from "node:path"; import { includeIgnoreFile } from "@eslint/compat"; import eslint from "@eslint/js"; import importPlugin from "eslint-plugin-import"; import tseslint from "typescript-eslint"; /** * @type {Parameters<typeof tseslint.config>} */ const config = [ // Ignore files not tracked by VCS and any config files includeIgnoreFile(path.join(import.meta.dirname, ".gitignore")), { ignores: ["*.config.*", "dist/**"] }, { files: ["**/*.js", "**/*.ts", "**/*.tsx"], plugins: { import: importPlugin, }, extends: [ eslint.configs.recommended, ...tseslint.configs.recommended, ...tseslint.configs.recommendedTypeChecked, ...tseslint.configs.stylisticTypeChecked, ], rules: { "@typescript-eslint/prefer-nullish-coalescing": "off", "@typescript-eslint/no-unused-vars": [ "error", { argsIgnorePattern: "^_", varsIgnorePattern: "^_" }, ], "@typescript-eslint/consistent-type-imports": [ "warn", { prefer: "type-imports", fixStyle: "separate-type-imports" }, ], "@typescript-eslint/no-misused-promises": [ 2, { checksVoidReturn: { attributes: false } }, ], "@typescript-eslint/no-unnecessary-condition": [ "error", { allowConstantLoopConditions: true, }, ], "@typescript-eslint/no-non-null-assertion": "error", "import/consistent-type-specifier-style": ["error", "prefer-top-level"], }, }, { linterOptions: { reportUnusedDisableDirectives: true }, languageOptions: { parserOptions: { projectService: true } }, }, ]; /** @type {import('@typescript-eslint/utils').TSESLint.FlatConfig.ConfigArray} */ export default tseslint.config(...config);

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/agentset-ai/mcp-server'

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