We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
import convex from "@convex-dev/eslint-plugin";
export default tseslint.config(
{
ignores: ["dist", "convex/_generated/**"],
},
eslint.configs.recommended,
...convex.configs.recommended,
...tseslint.configs.recommended,
{
rules: {
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-explicit-any": "off",
},
},
{
files: ["src/ratelimiter/**/*.ts"],
languageOptions: {
parser: tseslint.parser,
parserOptions: {
project: ["tsconfig.json"],
tsconfigRootDir: ".",
},
},
rules: {
"@typescript-eslint/no-floating-promises": "error",
// allow (_arg: number) => {}
"@typescript-eslint/no-unused-vars": [
"error",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
],
},
},
);