Skip to main content

8 posts tagged with "MCP"

Modern Computing Platform architecture and implementation approaches.

View All Tags

Understanding Model Context Protocol (MCP) Server - A Comprehensive Guide

· 5 min read
Deepak Kamboj
Senior Software Engineer

Modern AI workflows require more than just a prompt and a model — they demand context. In high-scale ML systems, especially those involving autonomous agents or dynamic LLM-based services, managing state, session, and data conditioning is essential. That’s where the Model Context Protocol (MCP) Server comes in.

In this blog post, we’ll walk through:

  • What an MCP Server is and why it’s needed
  • How it fits into AI/ML pipelines
  • Its component architecture
  • Real-world use cases
  • A walkthrough with TypeScript code snippets
  • Deployment and scaling considerations

Introduction to Tailwind CSS

· 4 min read
Deepak Kamboj
Senior Software Engineer

Tailwind CSS is a utility-first CSS framework packed with classes like flex, pt-4, text-center, and rotate-90 that can be composed to build any design, directly in your markup.

Key Features:

  • Utility-First: Build custom designs without writing CSS.
  • Responsive Design: Mobile-first approach with responsive utilities.
  • Customization: Easily customize your design system with Tailwind's configuration file.
  • Performance: Tailwind removes unused CSS in production, optimizing load times.

Implementing Redux in React vs NextJS

· 5 min read
Deepak Kamboj
Senior Software Engineer

In React, Redux is commonly used for global state management, often integrated using middleware like Redux Saga or Thunk. When transitioning to Next.js, Redux works similarly, but you’ll need to consider how Next.js handles server-side rendering (SSR) and static site generation (SSG). This guide compares Redux implementation in React and Next.js and explores how to handle SSR and persistent stores in Next.js.