Skip to main content
Glama
eldoonreval

Activepieces MCP Server

by eldoonreval
signing-key-entity.ts1.24 kB
import { KeyAlgorithm, SigningKey } from '@activepieces/ee-shared' import { Platform } from '@activepieces/shared' import { EntitySchema } from 'typeorm' import { ApIdSchema, BaseColumnSchemaPart } from '../../database/database-common' type SigningKeySchema = SigningKey & { platform: Platform } export const SigningKeyEntity = new EntitySchema<SigningKeySchema>({ name: 'signing_key', columns: { ...BaseColumnSchemaPart, displayName: { type: String, nullable: false, }, platformId: { ...ApIdSchema, nullable: false, }, publicKey: { type: String, nullable: false, }, algorithm: { type: String, enum: KeyAlgorithm, nullable: false, }, }, indices: [], relations: { platform: { type: 'many-to-one', target: 'platform', onDelete: 'RESTRICT', onUpdate: 'RESTRICT', joinColumn: { name: 'platformId', referencedColumnName: 'id', foreignKeyConstraintName: 'fk_signing_key_platform_id', }, }, }, })

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