Skip to main content
Glama
import js from "@eslint/js"; import tseslint from "typescript-eslint"; import globals from "globals"; export default tseslint.config( { ignores: [ "dist/", "node_modules/", "**/*.d.ts", "coverage/", "*.js", ".titan_memory/", "memory.json/", "test-weights*", ".cursor/", ], }, js.configs.recommended, { languageOptions: { globals: { ...globals.node, ...globals.es2022, }, }, }, { files: ["**/*.ts"], extends: [ ...tseslint.configs.recommendedTypeChecked, ...tseslint.configs.stylisticTypeChecked, ], languageOptions: { parser: tseslint.parser, parserOptions: { project: "./tsconfig.json", tsconfigRootDir: import.meta.dirname, }, }, plugins: { "@typescript-eslint": tseslint.plugin, }, rules: { // TypeScript specific rules "@typescript-eslint/no-unused-vars": [ "error", { argsIgnorePattern: "^_", varsIgnorePattern: "^_", caughtErrorsIgnorePattern: "^_", }, ], "@typescript-eslint/no-explicit-any": "warn", "@typescript-eslint/prefer-nullish-coalescing": "error", "@typescript-eslint/prefer-optional-chain": "error", "@typescript-eslint/no-non-null-assertion": "warn", "@typescript-eslint/consistent-type-imports": "error", "@typescript-eslint/no-import-type-side-effects": "error", "@typescript-eslint/prefer-as-const": "error", "@typescript-eslint/array-type": ["error", { default: "array-simple" }], "@typescript-eslint/consistent-type-definitions": ["error", "interface"], // General rules "prefer-const": "error", "no-var": "error", "no-console": "warn", eqeqeq: ["error", "always"], curly: ["error", "all"], "no-throw-literal": "error", "prefer-template": "error", // Relaxed rules for this project type "@typescript-eslint/no-floating-promises": "warn", "@typescript-eslint/no-misused-promises": "warn", "@typescript-eslint/require-await": "warn", }, }, { files: ["**/*.test.ts", "**/*.spec.ts"], rules: { "@typescript-eslint/no-explicit-any": "off", "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/henryhawke/mcp-titan'

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