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 SiteSpeakAuth = PieceAuth.SecretText({
displayName: 'SiteSpeakAI API Key',
description: `**Enter your SiteSpeakAI API Key.**
---
### How to obtain your API key
1. Sign up / log in at [SiteSpeakAI](https://sitespeak.ai/).
2. Go to **Dashboard → Settings → API Keys**.
3. Generate or copy an API key.
4. Paste it here.
`,
required: true,
validate: async ({ auth }) => {
if (!auth) {
return {
valid: false,
error: 'API Key is required',
};
}
try {
await makeRequest(auth as string, HttpMethod.GET, `/me`);
return {
valid: true,
};
} catch (error) {
return {
valid: false,
error: 'Invalid SiteSpeakAI API Key',
};
}
},
});