Skip to main content
Glama

EverArt Forge MCP Server

removeEmptyAttrs.js731 B
'use strict'; const { attrsGroups } = require('./_collections.js'); exports.name = 'removeEmptyAttrs'; exports.description = 'removes empty attributes'; /** * Remove attributes with empty values. * * @author Kir Belevich * * @type {import('./plugins-types').Plugin<'removeEmptyAttrs'>} */ exports.fn = () => { return { element: { enter: (node) => { for (const [name, value] of Object.entries(node.attributes)) { if ( value === '' && // empty conditional processing attributes prevents elements from rendering !attrsGroups.conditionalProcessing.has(name) ) { delete node.attributes[name]; } } }, }, }; };

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/nickbaumann98/everart-forge-mcp'

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