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 { createAction } from '@activepieces/pieces-framework';
import { airtableAuth } from '../auth';
import { airtableCommon } from '../common';
export const airtableGetBaseSchemaAction = createAction({
auth: airtableAuth,
name: 'airtable_get_base_schema',
displayName: 'Get Base Schema',
description:
'Retrieve the schema for a specific base, including all its tables and fields.',
props: {
base: airtableCommon.base,
},
async run(context) {
const { auth: personalToken, propsValue } = context;
const { base: baseId } = propsValue;
return await airtableCommon.fetchTableList({
token: personalToken.secret_text,
baseId: baseId as string,
});
},
});