Skip to main content
Glama

DocuMCP

by YannickTM
eslint.config.js1.66 kB
import eslint from "@eslint/js"; import tseslint from "typescript-eslint"; import prettierPlugin from "eslint-plugin-prettier"; import prettierConfig from "eslint-config-prettier"; export default tseslint.config( eslint.configs.recommended, ...tseslint.configs.recommended, ...tseslint.configs.strict, { files: ["**/*.ts"], languageOptions: { ecmaVersion: 2022, sourceType: "module", parserOptions: { project: "./tsconfig.json", }, }, plugins: { prettier: prettierPlugin, }, rules: { ...prettierConfig.rules, "prettier/prettier": "error", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/no-explicit-any": "warn", "@typescript-eslint/no-unused-vars": [ "error", { argsIgnorePattern: "^_", varsIgnorePattern: "^_", }, ], "@typescript-eslint/consistent-type-imports": [ "error", { prefer: "type-imports", }, ], "@typescript-eslint/naming-convention": [ "error", { selector: "interface", format: ["PascalCase"], }, { selector: "typeAlias", format: ["PascalCase"], }, { selector: "enum", format: ["PascalCase"], }, { selector: "enumMember", format: ["UPPER_CASE"], }, ], "no-console": ["warn", { allow: ["warn", "error"] }], "prefer-const": "error", "no-var": "error", }, }, { ignores: ["dist/**", "node_modules/**", "*.js", "*.d.ts"], }, );

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/YannickTM/docu-mcp'

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