
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
cool-image-api-wrapper
Advanced tools
A quick and easy wraper to interact with the cool image api!
A quick and easy wraper to interact with the cool image api!
npm install cool-image-api-wrapper
const { API } = require("cool-image-api-wrapper");
const api = new API();
await api
.discord_message(
"My, name is Sujal Goel",
"#7289DA",
"Sujal Goel",
"https://cdn.discordapp.com/avatars/581752425858203659/a_b26f9781f3b0300177ab1f3af6190a52.png"
)
.then((data) => {
console.log(data);
})
.catch((e) => {
console.log(e);
});
const Discord = require("discord.js");
const client = new Discord.Client();
const { API } = require("cool-image-api-wrapper");
const api = new API();
client.on("ready", () => {
console.log(`Logged in as ${client.user.tag}!`);
});
client.on("message", async (message) => {
if (message.content === "test") {
await api
.discord_message(
"My, name is Sujal Goel",
"#7289DA",
"Sujal Goel",
"https://cdn.discordapp.com/avatars/581752425858203659/a_b26f9781f3b0300177ab1f3af6190a52.png"
)
.then((data) => {
console.log(data);
const attachment = new Discord.MessageAttachment(data);
message.channel.send(attachment);
})
.catch((e) => {
console.log(e);
});
}
});
client.login("DISCORD_BOT_TOKEN");
FAQs
A quick and easy wraper to interact with the cool image api!
We found that cool-image-api-wrapper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.