Discover and remix public functions from the community
by @david
/**
* Discord Message Sender Service
*
* Sends text messages to Discord channels via the Discord API using a bot token.
* This service enables automated messaging, notifications, alerts, and integ...
by @david
/**
* Auto-generated main function wrapper for MicroFn execution
*
* @returns Promise<string | object> - Delegated result from getWeatherTokyo()
*/
export async function main() {
const url = "ht...
by @david
/**
* Telegram Message Sender
*
* Sends messages to Telegram via bot API. Supports HTML/Markdown formatting.
*
* Required Secrets:
* - BOT_TOKEN: Telegram bot token from @BotFather
* - CHAT_I...
by @david
/**
* Twilio SMS Webhook Funnel with Telegram Forwarding
*
* Processes incoming Twilio SMS webhook data by parsing URL-encoded parameters,
* extracting relevant message information, logging struct...
by @tengis
import secret from "@microfn/secret";
export async function main(_input: any) {
return await fetchGoogleNews();
}
async function fetchGoogleNews() {
const apiKey = await secret.getRequired("SERP...
by @tengis
import secret from "@microfn/secret";
// send a simple discord message
async function message(content: string) {
const url = await secret.getRequired("DISCORD_WEBHOOK_URL");
await fetch(url, {
...
by @tengis
import secret from "@microfn/secret";
// Forward emails to a Discord channel via webhook
export async function main(input: any) {
const webhook = await secret.getRequired("DISCORD_WEBHOOK_URL");
...
We can't find the internet
Attempting to reconnect
Something went wrong!
Attempting to reconnect