MCP HubMCP Hub
phact

mcp-google-docs

by: phact

mcp server for creating, reading, editing google docs (supports comments)

9created 11/02/2025
Visit
Google
Docs

📌Overview

Purpose: To provide a robust framework for building scalable and efficient applications.

Overview: This framework is designed to streamline the development process, enhancing productivity while ensuring high performance and adaptability in handling various workloads.

Key Features:

  • Modular Architecture: Encourages separation of concerns, allowing developers to work independently on different components, which enhances collaboration and maintainability.

  • High Performance: Optimized for speed and efficiency, leveraging advanced caching and asynchronous processing techniques to handle large volumes of requests swiftly.


import React from "react";
import {
  Anchor,
  Box,
  Flex,
  Grid,
  Icon,
  Image,
  Link as ChakraLink,
  Text,
  useBreakpointValue,
} from "@chakra-ui/react";
import {
  FaPython,
  FaGithub,
  FaJs,
  FaCss3Alt,
  FaReact,
  FaNodeJs,
  FaInstagram,
  FaLinkedin,
  FaFacebook,
} from "react-icons/fa";
import { SiNextdotjs, SiJavascript } from "react-icons/si";
import { DiMongodb } from "react-icons/di";
import { GiMountainClimbing } from "react-icons/gi";
import { FiExternalLink } from "react-icons/fi";
import Reveals from "../components/Reveal";
import Head from "next/head";

export default function Home() {
  return (
    <>
      <Head>
        <title>Diogo Bueno - Portfolio</title>
      </Head>
      <Box maxW="4xl" mx="auto" px={6} py={8}>
        <Reveals>
          <Text
            as="h1"
            fontSize="5xl"
            fontWeight="bold"
            mb={4}
            textAlign="center"
          >
            Diogo Bueno
          </Text>
        </Reveals>

        <Flex justify="center" mb={6}>
          <Icon as={GiMountainClimbing} boxSize={14} />
        </Flex>

        <Reveals>
          <Text fontSize="2xl" fontWeight="bold" mb={2} textAlign="center">
            Fullstack developer and mountain guide
          </Text>
          <Text fontSize="md" mb={4} textAlign="center">
            I am a Nigerian software engineer specializing in advancing low-code
            and no-code technologies, innovating apps, and digital transformation.
          </Text>
        </Reveals>

        <Reveals>
          <Grid
            templateColumns={{ base: "repeat(2, 1fr)", md: "repeat(3, 1fr)" }}
            gap={4}
            mb={8}
          >
            <Icon as={FaPython} boxSize={12} />
            <Icon as={FaJs} boxSize={12} />
            <Icon as={FaReact} boxSize={12} />
            <Icon as={FaNodeJs} boxSize={12} />
            <Icon as={DiMongodb} boxSize={12} />
            <Icon as={SiNextdotjs} boxSize={12} />
          </Grid>
        </Reveals>

        <Reveals>
          <Text fontWeight="bold" mb={2}>
            Social media:
          </Text>
          <Flex justify="center" gap={6} mb={8}>
            <ChakraLink
              href="https://linkedin.com/in/diogobuenon"
              isExternal
              aria-label="LinkedIn"
            >
              <Icon as={FaLinkedin} boxSize={6} />
            </ChakraLink>
            <ChakraLink
              href="https://github.com/diogobuenon"
              isExternal
              aria-label="GitHub"
            >
              <Icon as={FaGithub} boxSize={6} />
            </ChakraLink>
            <ChakraLink
              href="https://instagram.com/diogobuenon"
              isExternal
              aria-label="Instagram"
            >
              <Icon as={FaInstagram} boxSize={6} />
            </ChakraLink>
            <ChakraLink
              href="https://facebook.com/diogobuenon"
              isExternal
              aria-label="Facebook"
            >
              <Icon as={FaFacebook} boxSize={6} />
            </ChakraLink>
          </Flex>
        </Reveals>

        <Reveals>
          <Text fontWeight="bold" fontSize="xl" mb={4}>
            Selected Projects
          </Text>

          <Box mb={6}>
            <Text fontWeight="bold">
              Real-time chat app with Next.js and Socket.IO{" "}
              <ChakraLink
                href="https://github.com/diogobuenon/realtime-chat"
                isExternal
              >
                <Icon as={FiExternalLink} />
              </ChakraLink>
            </Text>
            <Text fontSize="sm" mb={2}>
              A chat application enabling real-time communication using Next.js
              and Socket.IO.
            </Text>
          </Box>

          <Box>
            <Text fontWeight="bold">
              Touring mountain peaks website{" "}
              <ChakraLink
                href="https://github.com/diogobuenon/mountain-guide"
                isExternal
              >
                <Icon as={FiExternalLink} />
              </ChakraLink>
            </Text>
            <Text fontSize="sm">
              Website showcasing mountain tours and guides built with React
              and Chakra UI.
            </Text>
          </Box>
        </Reveals>
      </Box>
    </>
  );
}