Skip to main content
Glama

Activepieces MCP Server

by eldoonreval
redis-pubsub.tsβ€’713 B
import { Redis } from 'ioredis' export const redisPubSub = ( redisClientSubscriber: Redis, redisClientPublisher: Redis, ) => { return { async subscribe( channel: string, listener: (channel: string, message: string) => void, ): Promise<void> { await redisClientSubscriber.subscribe(channel) redisClientSubscriber.on('message', listener) }, async publish(channel: string, message: string): Promise<void> { await redisClientPublisher.publish(channel, message) }, async unsubscribe(channel: string): Promise<void> { await redisClientSubscriber.unsubscribe(channel) }, } }

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/eldoonreval/activepieces'

If you have feedback or need assistance with the MCP directory API, please join our Discord server