Skip to main content
Glama

EverArt Forge MCP Server

font.cjs836 B
'use strict'; function compressFont(node) { const list = node.children; list.forEachRight(function(node, item) { if (node.type === 'Identifier') { if (node.name === 'bold') { item.data = { type: 'Number', loc: node.loc, value: '700' }; } else if (node.name === 'normal') { const prev = item.prev; if (prev && prev.data.type === 'Operator' && prev.data.value === '/') { this.remove(prev); } this.remove(item); } } }); if (list.isEmpty) { list.insert(list.createItem({ type: 'Identifier', name: 'normal' })); } } module.exports = compressFont;

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