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 convexPlugin from "@convex-dev/eslint-plugin";
export default tseslint.config(
{
ignores: ["dist", "convex/_generated/**"],
},
eslint.configs.recommended,
...convexPlugin.configs.recommended,
...tseslint.configs.recommended,
{
rules: {
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-explicit-any": "off",
},
},
{
files: ["**/convex/**/*.ts"],
languageOptions: {
parser: tseslint.parser,
parserOptions: {
project: ["convex/tsconfig.json"],
tsconfigRootDir: ".",
},
},
rules: {
"@typescript-eslint/no-floating-promises": "error",
"@convex-dev/require-args-validator": [
"error",
{
ignoreUnusedArguments: true,
},
],
},
},
);