Skip to main content
Glama

Convex MCP server

Official
by get-convex
.eslintrc.cjs1.67 kB
module.exports = { root: true, parser: "@typescript-eslint/parser", plugins: ["@typescript-eslint", "react-hooks", "react"], extends: [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier", ], rules: { // we use any to access internal-only APIs in Convex functions "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-unused-vars": [ "error", { varsIgnorePattern: "_.*" }, ], "@typescript-eslint/no-floating-promises": "error", // system UDF argument validation "no-restricted-imports": [ "error", { patterns: [ { group: ["**/_generated/server"], importNames: [ "query", "mutation", "action", "internalQuery", "internalMutation", "internalAction", ], message: "Use the query wrappers from convex/server.ts instead for system UDF argument validation.", }, { group: ["convex/server"], importNames: [ "queryGeneric", "mutationGeneric", "actionGeneric", "internalQueryGeneric", "internalMutationGeneric", "internalActionGeneric", ], message: "Use the query wrappers from convex/server.ts instead for system UDF argument validation.", }, ], }, ], }, parserOptions: { project: "./tsconfig.json", tsconfigRootDir: __dirname, }, ignorePatterns: ["node_modules", "dist", "_generated"], };

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/get-convex/convex-backend'

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