Skip to main content
Glama

Activepieces MCP Server

by eldoonreval
index.tsβ€’653 B
import { AppSystemProp } from '@activepieces/server-shared' import { createRedisClient } from '../../database/redis-connection' import { QueueMode, system } from '../system/system' import { memoryStore } from './memory-store' import { createRedisStore } from './redis-store' let _distributedStore: typeof memoryStore | null = null export const distributedStore = () => { if (_distributedStore !== null) { return _distributedStore } _distributedStore = system.getOrThrow<QueueMode>(AppSystemProp.QUEUE_MODE) === QueueMode.REDIS ? createRedisStore(createRedisClient()) : memoryStore return _distributedStore }

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