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 { t } from 'i18next';
import { PlatformAnalyticsReport } from '@activepieces/shared';
import { RunsChart } from './runs-chart';
import { TimeSavedChart } from './time-saved-chart';
type TrendsProps = {
report?: PlatformAnalyticsReport;
};
export function Trends({ report }: TrendsProps) {
return (
<div>
<div className="flex items-center justify-between">
<div className="text-lg font-semibold">{t('Trends')}</div>
</div>
<div className="mt-4 space-y-6">
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
<RunsChart report={report} />
<TimeSavedChart report={report} />
</div>
</div>
</div>
);
}