Claude sub-agents, PRD, MCP improvements (#359)
1. Added Claude Code sub-agents 2. Added PRD tool to MCP Server 3. Added MCP Server UI to Dev Tools 4. Improved MCP Server Database Tool 5. Updated dependencies
This commit is contained in:
committed by
GitHub
parent
02e2502dcc
commit
2b8572baaa
32
apps/dev-tool/app/mcp-server/database/page.tsx
Normal file
32
apps/dev-tool/app/mcp-server/database/page.tsx
Normal file
@@ -0,0 +1,32 @@
|
||||
import { Metadata } from 'next';
|
||||
|
||||
import { DatabaseToolsInterface } from './_components/database-tools-interface';
|
||||
import { loadDatabaseToolsData } from './_lib/server/database-tools.loader';
|
||||
|
||||
interface DatabasePageProps {
|
||||
searchParams: {
|
||||
search?: string;
|
||||
};
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Database Tools - MCP Server',
|
||||
description:
|
||||
'Explore database schemas, tables, functions, and enums through the MCP Server interface',
|
||||
};
|
||||
|
||||
async function DatabasePage({ searchParams }: DatabasePageProps) {
|
||||
const searchTerm = searchParams.search || '';
|
||||
|
||||
// Load all database data server-side
|
||||
const databaseData = await loadDatabaseToolsData();
|
||||
|
||||
return (
|
||||
<DatabaseToolsInterface
|
||||
searchTerm={searchTerm}
|
||||
databaseData={databaseData}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export default DatabasePage;
|
||||
Reference in New Issue
Block a user