We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OctoMind-dev/octomind-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"plugins": ["@typescript-eslint", "jest", "prettier", "import"],
"extends": [
"plugin:github/recommended",
"plugin:prettier/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:@typescript-eslint/strict"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"jest": true,
"node": true
},
"rules": {
"@typescript-eslint/no-floating-promises": "warn",
"prettier/prettier": "warn",
"no-console": "off",
"no-unused-vars": "off",
"github/array-foreach": "off",
"i18n-text/no-en": "off",
"github/no-then": "off",
"filenames/match-regex": "off", // introduced by github/recommended, only allows one hump for camelCase in test file names ?!
"import/no-namespace": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off"
},
"settings": {
"import/resolver": {
"typescript": {
"project": "./tsconfig.json"
},
"node": true
},
"import/parsers": {
"@typescript-eslint/parser": [".ts"]
}
}
}