We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/flesler/mcp-tasks'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["./tsconfig.json", "./bin/tsconfig.json"],
"ecmaVersion": 2022,
"sourceType": "module",
"warnOnUnsupportedTypeScriptVersion": false
},
"plugins": [
"@typescript-eslint"
],
"env": {
"node": true,
"es2022": true
},
"settings": {
"react": {
"version": "999.999.999"
}
},
"rules": {
"semi": ["error", "never"],
"@typescript-eslint/semi": ["error", "never"],
"quotes": ["error", "single"],
"indent": ["error", 2],
"no-trailing-spaces": "error",
"eol-last": "error",
"comma-dangle": ["error", "always-multiline"],
"object-curly-spacing": ["error", "always"],
"array-bracket-spacing": ["error", "never"],
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"@typescript-eslint/consistent-type-imports": "error",
"no-multiple-empty-lines":["error", { "max": 1, "maxEOF": 1, "maxBOF": 0 }],
"no-console": "off"
}
}