Files
myeasycms-v2/apps/dev-tool/app/prds/page.tsx
Giancarlo Buomprisco f3ac595d06 MCP Server 2.0 (#452)
* MCP Server 2.0

- Updated application version from 2.23.14 to 2.24.0 in package.json.
- MCP Server improved with new features
- Migrated functionality from Dev Tools to MCP Server
- Improved getMonitoringProvider not to crash application when misconfigured
2026-02-11 20:42:01 +01:00

17 lines
476 B
TypeScript

import { Metadata } from 'next';
import { PRDsListInterface } from './_components/prds-list-interface';
import { loadPRDs } from './_lib/server/prd-loader';
export const metadata: Metadata = {
title: 'PRDs - MCP Server',
description: 'Browse and view all Product Requirements Documents',
};
export default async function PRDsPage() {
// Load PRDs on the server side
const initialPrds = await loadPRDs();
return <PRDsListInterface initialPrds={initialPrds} />;
}