Skip to main content
Glama

EverArt Forge MCP Server

syntax.js1.31 kB
import { fork, string, url, tokenTypes as TYPE } from 'css-tree'; import compress from './compress.js'; import specificity from './restructure/prepare/specificity.js'; function encodeString(value) { const stringApostrophe = string.encode(value, true); const stringQuote = string.encode(value); return stringApostrophe.length < stringQuote.length ? stringApostrophe : stringQuote; } const { lexer, tokenize, parse, generate, walk, find, findLast, findAll, fromPlainObject, toPlainObject } = fork({ node: { String: { generate(node) { this.token(TYPE.String, encodeString(node.value)); } }, Url: { generate(node) { const encodedUrl = url.encode(node.value); const string = encodeString(node.value); this.token(TYPE.Url, encodedUrl.length <= string.length + 5 /* "url()".length */ ? encodedUrl : 'url(' + string + ')' ); } } } }); export { lexer, tokenize, parse, generate, walk, find, findLast, findAll, fromPlainObject, toPlainObject, specificity, compress };

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