We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/docdyhr/mcp-wordpress'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Temporary ESLint configuration for v2.5.0 release
* Relaxes some rules to allow production deployment while maintaining security
*/
module.exports = {
extends: ["./eslint.config.js"],
rules: {
// Temporarily allow any types for legacy code during release
"@typescript-eslint/no-explicit-any": "warn",
// Allow console statements in debug/configuration files
"no-console": [
"error",
{
allow: ["warn", "error", "info", "debug"],
},
],
// Allow unused vars with underscore prefix
"no-unused-vars": [
"error",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
},
],
// Temporarily allow conditional expects in complex test scenarios
"jest/no-conditional-expect": "warn",
},
};