Skip to main content
Glama
eldoonreval

Activepieces MCP Server

by eldoonreval
signing-key-service.ts2.28 kB
import { AddSigningKeyResponse, SigningKey, SigningKeyId } from '@activepieces/ee-shared' import { ActivepiecesError, apId, ErrorCode, isNil, PlatformId, SeekPage, } from '@activepieces/shared' import { repoFactory } from '../../core/db/repo-factory' import { SigningKeyEntity } from './signing-key-entity' import { signingKeyGenerator } from './signing-key-generator' const repo = repoFactory<SigningKey>(SigningKeyEntity) export const signingKeyService = { async add({ platformId, displayName }: AddParams): Promise<AddSigningKeyResponse> { const generatedSigningKey = await signingKeyGenerator.generate() const newSigningKey: NewSigningKey = { id: apId(), platformId, publicKey: generatedSigningKey.publicKey, algorithm: generatedSigningKey.algorithm, displayName, } const savedKeyPair = await repo().save(newSigningKey) return { ...savedKeyPair, privateKey: generatedSigningKey.privateKey, } }, async list({ platformId }: ListParams): Promise<SeekPage<SigningKey>> { const data = await repo().findBy({ platformId, }) return { data, next: null, previous: null, } }, async get({ id }: GetParams): Promise<SigningKey | null> { return repo().findOneBy({ id, }) }, async delete({ platformId, id }: DeleteParams): Promise<void> { const entity = await repo().findOneBy({ platformId, id, }) if (isNil(entity)) { throw new ActivepiecesError({ code: ErrorCode.ENTITY_NOT_FOUND, params: { message: `signing key with id ${id} not found`, }, }) } await repo().delete({ platformId, id, }) }, } type AddParams = { platformId: PlatformId displayName: string } type GetParams = { id: SigningKeyId } type DeleteParams = { id: SigningKeyId platformId: PlatformId } type NewSigningKey = Omit<SigningKey, 'created' | 'updated'> type ListParams = { platformId?: PlatformId }

Latest Blog Posts

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