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 { PieceAuth } from '@activepieces/pieces-framework';
import { makeRequest } from './client';
import { HttpMethod } from '@activepieces/pieces-common';
export const aircallAuth = PieceAuth.BasicAuth({
description: `You can create API key by naviagting to **Integrations & API** menu.`,
required: true,
username: {
displayName: 'API ID',
},
password: {
displayName: 'API Token',
},
validate: async ({ auth }) => {
try {
await makeRequest(auth, HttpMethod.GET, '/ping');
return { valid: true };
} catch (error) {
return { valid: false, error: 'Invalid Credentials' };
}
},
});