import clsx from 'clsx'; import Heading from '@theme/Heading'; import styles from './styles.module.css'; type FeatureItem = { title: string; Svg: React.ComponentType>; description: JSX.Element; }; const FeatureList: FeatureItem[] = [ { title: 'Easy to Use', Svg: require('@site/static/img/easy-to-use.svg').default, description: ( <> MCP Database Server is easy to configure. Just update your Claude Desktop config file, and you're ready to start querying your databases! ), }, { title: 'Multiple Database Support', Svg: require('@site/static/img/mcp-database.svg').default, description: ( <> Seamlessly connect to SQLite, SQL Server, and PostgreSQL databases with a consistent interface for all your data needs. ), }, { title: 'Powered by Node.js', Svg: require('@site/static/img/node.svg').default, description: ( <> Built with Node.js for high performance and reliability. Benefit from connection pooling, async operations, and efficient memory management. ), }, ]; function Feature({title, Svg, description}: FeatureItem) { return (
{title}

{description}

); } export default function HomepageFeatures(): JSX.Element { return (
Key Features

Powerful capabilities to enhance your Claude interactions with databases

{FeatureList.map((props, idx) => ( ))}
); }