<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tooling on AI VOID</title><link>https://ai-blog.noorshomelab.dev/tags/tooling/</link><description>Recent content in Tooling on AI VOID</description><generator>Hugo</generator><language>en</language><lastBuildDate>Fri, 20 Mar 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://ai-blog.noorshomelab.dev/tags/tooling/index.xml" rel="self" type="application/rss+xml"/><item><title>Unpacking the Model Context Protocol (MCP): An Introduction</title><link>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/mcp-introduction/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/mcp-introduction/</guid><description>&lt;h2 id="unpacking-the-model-context-protocol-mcp-an-introduction"&gt;Unpacking the Model Context Protocol (MCP): An Introduction&lt;/h2&gt;
&lt;p&gt;Welcome, aspiring AI architect! Get ready to dive into one of the most exciting areas in modern AI development: empowering your AI agents to interact with the real world. In this learning guide, we&amp;rsquo;re going to demystify the &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;, an open standard designed to be the universal translator between intelligent agents and the vast ecosystem of external tools and data.&lt;/p&gt;</description></item><item><title>Crafting Tool Schemas: Declaring Capabilities and UI Resources</title><link>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/tool-schemas-and-ui-resources/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/tool-schemas-and-ui-resources/</guid><description>&lt;h2 id="introduction-giving-your-ai-agent-a-blueprint"&gt;Introduction: Giving Your AI Agent a Blueprint&lt;/h2&gt;
&lt;p&gt;Welcome back, future AI architects! In our previous chapter, we explored the foundational concepts of the Model Context Protocol (MCP) and understood its role as a universal language for AI agents to interact with the world. Now, let&amp;rsquo;s dive into the heart of MCP: &lt;strong&gt;tool schemas&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Imagine you&amp;rsquo;re training a personal assistant. You wouldn&amp;rsquo;t just tell it, &amp;ldquo;Go order food.&amp;rdquo; You&amp;rsquo;d give it a clear, step-by-step guide: &amp;ldquo;To order food, you need to know the restaurant, the items, and the delivery address.&amp;rdquo; This guide is essentially a schema. For AI agents, tool schemas are the precise, machine-readable blueprints that define &lt;em&gt;what&lt;/em&gt; a tool can do, &lt;em&gt;how&lt;/em&gt; to use it, and even &lt;em&gt;how&lt;/em&gt; to visually represent its interactions.&lt;/p&gt;</description></item><item><title>Setting Up Your MCP Development Environment with TypeScript SDK v2</title><link>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/setup-typescript-sdk-v2/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/setup-typescript-sdk-v2/</guid><description>&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Welcome to Chapter 3! In our previous discussions, we explored the fundamental concepts of the Model Context Protocol (MCP), understanding its purpose as an open standard for AI agents to discover and interact with external tools. We learned &lt;em&gt;what&lt;/em&gt; MCP is and &lt;em&gt;why&lt;/em&gt; it&amp;rsquo;s so crucial for building intelligent, capable agents. Now, it&amp;rsquo;s time to roll up our sleeves and get practical!&lt;/p&gt;
&lt;p&gt;This chapter is all about setting up your local development environment to start building with MCP. Specifically, we&amp;rsquo;ll focus on getting the TypeScript SDK v2 ready, as it&amp;rsquo;s a powerful and popular choice for many developers. By the end of this chapter, you&amp;rsquo;ll have a fully configured workspace, ready to define your first MCP tool and integrate it into an agent workflow. Think of this as laying the groundwork – a crucial step before you start building your dream AI-powered applications.&lt;/p&gt;</description></item><item><title>Registering and Discovering Tools: Making Your MCP Services Visible</title><link>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/registering-and-discovering-tools/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/registering-and-discovering-tools/</guid><description>&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Welcome back, intrepid AI architects! In our previous chapter, we explored the fascinating world of Tool Schemas, learning how to precisely define the capabilities of an AI agent&amp;rsquo;s external tools. You crafted clear, unambiguous blueprints for what your tools can do. But what&amp;rsquo;s the use of a beautifully designed tool if no one knows it exists?&lt;/p&gt;
&lt;p&gt;This chapter is all about making your amazing tools visible and accessible to AI agents and other services. We&amp;rsquo;ll dive into the critical processes of &lt;strong&gt;tool registration&lt;/strong&gt; and &lt;strong&gt;tool discovery&lt;/strong&gt; within the Model Context Protocol (MCP) ecosystem. Think of it like publishing your tool&amp;rsquo;s &amp;ldquo;yellow pages&amp;rdquo; entry, allowing agents to find and understand how to interact with your services. By the end of this chapter, you&amp;rsquo;ll be able to register your custom MCP tools and understand how AI agents can discover and utilize them, including how to enrich tool definitions with UI resources for more dynamic interactions.&lt;/p&gt;</description></item><item><title>AI Agent Interaction: Invoking Tools with LangChain.js</title><link>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/ai-agent-tool-invocation-langchain/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/ai-agent-tool-invocation-langchain/</guid><description>&lt;h2 id="introduction-agents-tools-and-the-orchestrator"&gt;Introduction: Agents, Tools, and the Orchestrator&lt;/h2&gt;
&lt;p&gt;Welcome back, intrepid explorers of AI! In our previous chapters, we laid the groundwork for the Model Context Protocol (MCP), understanding its mission to standardize how AI agents discover and interact with external applications and services. We explored how MCP tools declare their capabilities using precise JSON Schemas, essentially providing an instruction manual for any AI that wants to use them.&lt;/p&gt;
&lt;p&gt;Now, it&amp;rsquo;s time to bring these concepts to life! In this chapter, we&amp;rsquo;re going to dive deep into the fascinating world of AI agent interaction. We&amp;rsquo;ll learn how an AI agent, specifically one orchestrated by the popular LangChain.js framework, can understand, select, and &lt;em&gt;invoke&lt;/em&gt; an MCP-compliant tool to perform real-world actions. Think of it as teaching your AI assistant to use a new app on its smartphone – it needs to know what the app does, what information it needs, and what kind of result to expect.&lt;/p&gt;</description></item><item><title>Tool Marketplaces: Empowering Agents with External Abilities</title><link>https://ai-blog.noorshomelab.dev/ai-engineering-2026/tool-marketplaces-empowering-agents/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/ai-engineering-2026/tool-marketplaces-empowering-agents/</guid><description>&lt;h2 id="introduction-to-tool-marketplaces"&gt;Introduction to Tool Marketplaces&lt;/h2&gt;
&lt;p&gt;Welcome to Chapter 6! In our journey through advanced AI engineering, we&amp;rsquo;ve explored how AI agents are becoming the building blocks of complex systems and how orchestration engines coordinate their efforts. But what if an agent needs to do something beyond its inherent knowledge, like checking the live weather, performing a complex calculation, or interacting with a specific database? That&amp;rsquo;s where &lt;strong&gt;tools&lt;/strong&gt; come into play, and &lt;strong&gt;Tool Marketplaces&lt;/strong&gt; are where agents (or rather, their developers) discover and integrate these essential external abilities.&lt;/p&gt;</description></item><item><title>Understanding Execution Pipelines and Request Routing in MCP</title><link>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/execution-pipelines-routing/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/execution-pipelines-routing/</guid><description>&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Welcome back, intrepid AI architects! In our previous chapters, we&amp;rsquo;ve explored the foundational concepts of the Model Context Protocol (MCP), from its purpose as a universal language for AI tool interaction to the intricate details of defining and registering tools using robust JSON Schemas. You&amp;rsquo;ve learned how tools declare their capabilities, making them discoverable by AI agents.&lt;/p&gt;
&lt;p&gt;But how does an AI agent actually &lt;em&gt;use&lt;/em&gt; a tool once it&amp;rsquo;s discovered? How does a request travel from the agent, through the MCP system, to the correct tool, and then return a meaningful response? That&amp;rsquo;s precisely what we&amp;rsquo;ll unravel in this chapter: the fascinating world of &lt;strong&gt;Execution Pipelines&lt;/strong&gt; and &lt;strong&gt;Request Routing&lt;/strong&gt; within MCP.&lt;/p&gt;</description></item><item><title>Advanced Tooling and External Integrations: Beyond the Basics</title><link>https://ai-blog.noorshomelab.dev/ai-agent-frameworks-2026/advanced-tooling-integrations/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/ai-agent-frameworks-2026/advanced-tooling-integrations/</guid><description>&lt;h2 id="advanced-tooling-and-external-integrations-beyond-the-basics"&gt;Advanced Tooling and External Integrations: Beyond the Basics&lt;/h2&gt;
&lt;p&gt;Welcome back, intrepid agent architect! In previous chapters, we laid the groundwork for understanding AI agents and their basic capabilities. You&amp;rsquo;ve seen how agents can reason and even use simple tools to perform actions. But what if your agent needs to check the live stock market, send an email, or interact with a complex database? This is where advanced tooling and external integrations come into play.&lt;/p&gt;</description></item><item><title>Chapter 8: Building the CLI: User Interface and Output Modes</title><link>https://ai-blog.noorshomelab.dev/mermaid-lint-guide/chapter-8-building-the-cli/</link><pubDate>Tue, 17 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/mermaid-lint-guide/chapter-8-building-the-cli/</guid><description>&lt;h2 id="chapter-8-building-the-cli-user-interface-and-output-modes"&gt;Chapter 8: Building the CLI: User Interface and Output Modes&lt;/h2&gt;
&lt;p&gt;Welcome to Chapter 8 of our journey to build a production-grade Mermaid code analyzer and fixer. In the previous chapters, we laid the foundational components: the lexer, parser, AST, validator, rule engine, and diagnostics system. These are the core engines of our tool, but without a robust command-line interface (CLI), our powerful backend remains inaccessible to users.&lt;/p&gt;
&lt;p&gt;This chapter focuses entirely on building a user-friendly and feature-rich CLI for our &lt;code&gt;mermaid-analyzer&lt;/code&gt; tool. We will leverage the &lt;code&gt;clap&lt;/code&gt; crate for argument parsing, providing a familiar and intuitive experience for developers. Our CLI will support multiple output modes: &lt;code&gt;lint&lt;/code&gt; for reporting issues, &lt;code&gt;fix&lt;/code&gt; for applying safe transformations, and &lt;code&gt;strict&lt;/code&gt; for enforcing the highest level of correctness. We&amp;rsquo;ll also ensure our output is clear, actionable, and visually appealing using colored terminal output, mirroring the excellent diagnostics provided by the Rust compiler itself.&lt;/p&gt;</description></item><item><title>Chapter 20: The TypeScript Ecosystem: Tooling and Future Trends</title><link>https://ai-blog.noorshomelab.dev/ts-mastery-2025/typescript-ecosystem-tooling-future-trends/</link><pubDate>Fri, 05 Dec 2025 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/ts-mastery-2025/typescript-ecosystem-tooling-future-trends/</guid><description>&lt;h2 id="chapter-20-the-typescript-ecosystem-tooling-and-future-trends"&gt;Chapter 20: The TypeScript Ecosystem: Tooling and Future Trends&lt;/h2&gt;
&lt;p&gt;Hello, fearless developer! You&amp;rsquo;ve come so far, mastering the core syntax, advanced types, and powerful design patterns of TypeScript. You&amp;rsquo;ve built robust, type-safe applications, and that&amp;rsquo;s truly awesome! But here&amp;rsquo;s a secret: truly mastering TypeScript isn&amp;rsquo;t just about the language itself; it&amp;rsquo;s also about understanding the powerful ecosystem of tools that surround it.&lt;/p&gt;
&lt;p&gt;In this chapter, we&amp;rsquo;re going to pull back the curtain and explore the essential tools that make TypeScript development a joy, from running your code directly to ensuring pristine code quality. We&amp;rsquo;ll also peek into the crystal ball to see what exciting trends are shaping TypeScript&amp;rsquo;s future. By the end, you&amp;rsquo;ll not only write excellent TypeScript but also navigate its rich tooling landscape with confidence, preparing you for any modern development challenge.&lt;/p&gt;</description></item><item><title>Chapter 1: Setting Up Your TypeScript Playground</title><link>https://ai-blog.noorshomelab.dev/dsa-typescript-mastery-2026/setup-typescript-playground/</link><pubDate>Mon, 16 Feb 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/dsa-typescript-mastery-2026/setup-typescript-playground/</guid><description>&lt;h2 id="welcome-to-your-dsa-adventure"&gt;Welcome to Your DSA Adventure!&lt;/h2&gt;
&lt;p&gt;Hello, future algorithm master! Welcome to the very first chapter of your journey into Data Structures and Algorithms (DSA) with TypeScript. This course is designed to take you from a complete beginner in DSA to someone who can confidently tackle complex problems, armed with deep understanding and practical TypeScript skills.&lt;/p&gt;
&lt;p&gt;In this chapter, we&amp;rsquo;re going to lay the groundwork for our entire learning experience. Think of it as preparing your workbench before starting a big project. We&amp;rsquo;ll install the essential tools, configure our development environment, and make sure everything is humming along smoothly. By the end of this chapter, you&amp;rsquo;ll have a fully functional TypeScript playground ready to write, compile, and run your DSA solutions. This crucial first step ensures you spend less time battling environment issues and more time mastering algorithms!&lt;/p&gt;</description></item></channel></rss>