Skip to main content
Glama

SERVER-MCP

by acampkin95
.eslintrc.cjs1.1 kB
/** @type {import("eslint").Linter.Config} */ module.exports = { root: true, env: { es2022: true, node: true, }, parser: "@typescript-eslint/parser", parserOptions: { ecmaVersion: "latest", sourceType: "module", }, plugins: ["@typescript-eslint"], extends: [ "eslint:recommended", "plugin:@typescript-eslint/recommended", ], ignorePatterns: ["dist/**", "node_modules/**"], rules: { "no-console": "off", "@typescript-eslint/consistent-type-imports": "error", // TODO: Re-enable stricter async rules (e.g., @typescript-eslint/no-floating-promises, // @typescript-eslint/no-misused-promises) once the test suite is in place to cover async flows. "@typescript-eslint/no-unused-vars": [ "error", { argsIgnorePattern: "^_", varsIgnorePattern: "^_", caughtErrors: "none", }, ], }, overrides: [ { files: ["**/__tests__/**/*.ts", "**/*.test.ts"], env: { jest: true, }, rules: { "@typescript-eslint/no-unused-vars": "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/acampkin95/MCPCentralManager'

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