Category: Blog
-
MCP Servers – What, How and the Future?
The What What is MCP? MCP stands for model context protocol. It was introduced by Anthropic, the company behind Claude AI. If we try understand MCP by its full form then it is simply a protocol that guides us to provide context to a particular LLM model efficiently. Anthropic mentions on their website that MCP…
-
What is Kafka?
Kafka is an open-source data storage system for real-time data with a very high frequency that is needs to be written to a database in real-time. It serves as an extra layer between the database and the client which is sending the data. Why is there a need for Kafka? Let us suppose a system…
-
Angular Standalone Components
What Are Angular Standalone Components? Components in Angular are the basic building blocks of any Angular Application. When we create any component, we need to declare it in the module where we are creating that component otherwise Angular will throw error. Starting from Angular 14, we can create components which can exist independently without being…