OKOnkar Kinonkark.hashnode.dev·Jun 9 · 7 min readHow To Build MCP Server from Scratch with TypeScript and GroqThree core concepts while building MCP Resources - Acts as a read-only data source—similar to a local file or static API endpoint—that an LLM can parse for immediate context. Tools - Executable func00
OKOnkar Kinonkark.hashnode.dev·Jun 9 · 9 min readHow to Build MCP Client from Scratch with TypeScript and GroqWe are going to build MCP Client to connect MCP Server(remote/local) If you are new to building Model Context Protocol servers, I highly recommend checking out our foundational guide on How to Build L00
OKOnkar Kinonkark.hashnode.dev·Jun 8 · 2 min readModel Context Protocol (MCP)What is MCP The Model Context Protocol (MCP) is open source standard design universal connector between AI application and external data source, tools to perform function You can think MCP as USB-C po00
OKOnkar Kinonkark.hashnode.dev·Feb 19 · 2 min readToken Based Auth System [state-less]In a token-based system, HS256 and RS256 are the two most common algorithms used to sign the token. 1. HS256 This method is mostly used in monolith application, where it only requires single key. 00
OKOnkar Kinonkark.hashnode.dev·Feb 18 · 2 min readSession Based Auth System [state-full]Session based auth is traditional method of auth and it is state-full means we store sessions of user in memory or DB and share session_id to user to verity his identity This method is gold standard 00