Build Intelligent SQL Agents with OpenAI, Azure Foundry and SQL MCP

Background In the last month, Microsoft released the MSSQL MCP Server (Preview), a bridge that lets AI applications talk to SQL Server using Model Context Protocol. The announcement (see official post) sparked my curiosity, I wanted to test-drive natural-language querying against my own databases. While kicking the tires I discovered a limitation: the preview Node.js … Read more

How to Track Token Usage in OpenAI Agent SDK for Cost Control

For organizations leveraging OpenAI’s Agent SDK, one of the most important metrics to track is token usage. Tokens are the fundamental units of text processing in large language models, and they directly impact both performance and cost. This post explores how to track token usage in applications built with the OpenAI Agent SDK discusses the … Read more

Single-Agent vs Multi-Agent Architectures in AI Application Development: When to Choose Which?

When I first started exploring AI-driven applications and experimenting with different emerging agent frameworks, one basic question consistently puzzled me: If we can implement the entire domain using a single agent, why complicate things by creating multiple agents to achieve same result? What additional value do multi-agent architectures offer?  In this post, I’ll share insights … Read more