import Link from 'next/link'; import { withI18n } from '@/lib/i18n/with-i18n'; import { DatabaseIcon, FileTextIcon, ServerIcon } from 'lucide-react'; import { Button } from '@kit/ui/button'; import { Card, CardContent, CardHeader, CardTitle } from '@kit/ui/card'; import { Page, PageBody, PageHeader } from '@kit/ui/page'; export const metadata = { title: 'MCP Server', description: 'MCP Server development interface for database exploration and PRD management', }; function McpServerPage() { return (
{/* Welcome Section */}

Welcome to MCP Server Tools

Choose from the tools below to explore your database schema or manage your Product Requirements Documents. Use the sidebar navigation for quick access to specific tools.

{/* Tool Cards */}
Database Tools

Explore database schemas, tables, functions, and enums through an intuitive interface.

  • • Browse database schemas and their structure
  • • Explore tables with columns and relationships
  • • Discover database functions and their parameters
  • • View enum types and their values
PRD Manager

Create and manage Product Requirements Documents with user stories and progress tracking.

  • • Create and edit PRDs with structured templates
  • • Manage user stories with priority tracking
  • • Track progress and project status
  • • Export PRDs to markdown format
); } export default withI18n(McpServerPage);