We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/activepieces/activepieces'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { HttpMethod } from '@activepieces/pieces-common';
import { createAction } from '@activepieces/pieces-framework';
import { respondIoApiCall } from '../common/client';
import { respondIoAuth } from '../common/auth';
import { contactIdentifierDropdown } from '../common/props';
export const deleteContact = createAction({
auth: respondIoAuth,
name: 'delete_contact',
displayName: 'Delete Contact',
description: 'Permanently delete a contact from Respond.io.',
props: {
identifier: contactIdentifierDropdown,
},
async run({ propsValue, auth }) {
const { identifier } = propsValue;
return await respondIoApiCall({
method: HttpMethod.DELETE,
url: `/contact/${identifier}`,
auth: auth,
});
},
});