We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rein1225/RPGMakerMZ_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.js•301 B
import BmpDecoder from './decoder.js';
import BmpEncoder from './encoder.js';
export function decode(bmpData, options) {
return new BmpDecoder(bmpData, options);
}
export function encode(imgData) {
return new BmpEncoder(imgData);
}
export * from './types.js';
//# sourceMappingURL=index.js.map