We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/amineremache/daft-ie-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import globals from "globals";
import tseslint from "typescript-eslint";
import prettierPlugin from "eslint-plugin-prettier";
import prettierConfig from "eslint-config-prettier";
export default tseslint.config(
{
languageOptions: {
globals: {
...globals.node,
},
},
},
...tseslint.configs.recommended,
{
plugins: {
prettier: prettierPlugin,
},
rules: {
...prettierConfig.rules,
"prettier/prettier": "error",
"no-trailing-spaces": "error",
},
}
);