<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Alex Shershebnev Archives - ShiftMag</title>
	<atom:link href="https://shiftmag.dev/tag/alex-shershebnev/feed/" rel="self" type="application/rss+xml" />
	<link>https://shiftmag.dev/tag/alex-shershebnev/</link>
	<description>Insightful engineering content &#38; community</description>
	<lastBuildDate>Tue, 30 Dec 2025 21:51:05 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://shiftmag.dev/wp-content/uploads/2024/08/cropped-ShiftMag-favicon-32x32.png</url>
	<title>Alex Shershebnev Archives - ShiftMag</title>
	<link>https://shiftmag.dev/tag/alex-shershebnev/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>MCP Lets AI Actually Do Stuff Safely &#8211; But Only If You Watch It Like a Hawk</title>
		<link>https://shiftmag.dev/mcp-ai-developers-6943/</link>
		
		<dc:creator><![CDATA[Marko Crnjanski]]></dc:creator>
		<pubDate>Fri, 14 Nov 2025 15:36:26 +0000</pubDate>
				<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[Alex Shershebnev]]></category>
		<category><![CDATA[Infobip Kuala Lumpur]]></category>
		<category><![CDATA[MCP]]></category>
		<category><![CDATA[Shift Conference]]></category>
		<category><![CDATA[Shift Kuala Lumpur]]></category>
		<guid isPermaLink="false">https://shiftmag.dev/?p=6943</guid>

					<description><![CDATA[<p>As AI moves from generating code to taking real actions, MCP provides a crucial safety net - but only if developers enforce strict controls and monitor every move.</p>
<p>The post <a href="https://shiftmag.dev/mcp-ai-developers-6943/">MCP Lets AI Actually Do Stuff Safely &#8211; But Only If You Watch It Like a Hawk</a> appeared first on <a href="https://shiftmag.dev">ShiftMag</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Although today’s LLMs are exceptional at recognizing linguistic patterns, they lack <em>grounding</em> in the physical and operational world. An LLM can generate meaningful text, but <strong>it does not truly understand the systems</strong>, <strong>data structures</strong>, or <strong>state behind that text</strong>.</p>



<p class="wp-block-paragraph"><strong>Alex Shershebnev</strong> (Head of ML/DevOps and DevRel, Zencoder) explains that this gap becomes obvious once developers try using AI in real production systems, where even a logical-sounding model output can trigger unexpected and potentially harmful effects if it interacts directly with live infrastructure.</p>



<p class="wp-block-paragraph">He warned that letting an LLM act without limits &#8211; like querying databases or deploying code &#8211; could cause serious damage, from wiping data to pushing faulty code. </p>



<p class="wp-block-paragraph">The key challenge, therefore, is to <strong>bridge this intelligence gap <em>safely</em></strong>.</p>



<h2 class="wp-block-heading">Enter MCP &#8211; a bridge between AI and infrastructure</h2>



<p class="wp-block-paragraph">To address this problem, the industry has turned to the <strong><a href="https://shiftmag.dev/how-infobips-mcp-enables-true-agentic-ai-5220/" target="_blank" rel="noreferrer noopener">Model Context Protocol (MCP)</a></strong>, introduced by Anthropic in late 2024. MCP standardizes how LLMs connect with external tools, APIs, and systems in a secure and transparent manner. The protocol defines two core entities:</p>



<ul class="wp-block-list">
<li><strong>MCP Client</strong> – usually the LLM or AI agent that determines which tools it needs to fulfill a task.</li>



<li><strong>MCP Server</strong> – the component that exposes a curated list of available tools and safely executes operations when requested.</li>
</ul>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">This structure allows LLMs to extend their functionality beyond text generation, performing actions like fetching monitoring data from Grafana, reading error logs from Sentry, or triggering CI/CD pipelines without requiring unrestricted access.</p>
</blockquote>



<p class="wp-block-paragraph">Even major players like OpenAI have adopted MCP, underscoring its growing importance as an interoperability and safety standard.</p>



<h2 class="wp-block-heading"><span id="clear-parameters-drive-accurate-tool-execution">Clear parameters drive accurate tool execution</span></h2>



<p class="wp-block-paragraph">Shershebnev detailed how <strong>MCP servers present resources as</strong> <strong>tools</strong>, each defined by a name, parameters, and a clear description. The MCP client (LLM) can then select and execute the appropriate tool to retrieve or modify data.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">This exchange follows a predictable, auditable flow: upon initialization, the server exposes a list of all available tools, and the LLM requests specific actions based on user input. The server executes the operation, returns the results in a standardized format, and the LLM incorporates them into its response.</p>
</blockquote>



<p class="wp-block-paragraph">Alex emphasized that MCP’s design makes it language-agnostic and easy to integrate. Developers can quickly<strong> connect their existing systems </strong>by importing a lightweight MCP library and defining tool endpoints. This opens a path for automating repetitive DevOps tasks such as branch creation, ticket management, and incident reporting.</p>



<p class="wp-block-paragraph">Through live examples, he showed how MCP agents can automatically handle Jira tickets, open branches, and even query Kubernetes clusters to diagnose pod issues, all without leaving the IDE. However, these same capabilities also amplify the potential for misuse if the setup is not properly secured.</p>



<h2 class="wp-block-heading"><span id="mcp-servers-inherit-all-the-vulnerabilities-of-traditional-servers">MCP servers inherit all the vulnerabilities of traditional servers</span></h2>



<p class="wp-block-paragraph">&#8220;Great power comes with great responsibility,&#8221; Alex noted when addressing MCP’s dual nature. MCP servers, while powerful, inherit all the vulnerabilities of traditional servers: package hijacking, malicious dependencies, open ports, and unpatched libraries. </p>



<p class="wp-block-paragraph">On top of that, they introduce new, <strong>AI-specific risks</strong>.</p>



<p class="wp-block-paragraph">The most prominent among them is <strong>prompt injection,</strong> a scenario in which a malicious payload hidden inside text, code, or a web page manipulates the LLM into performing unintended actions.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1024" height="628" src="https://shiftmag.dev/wp-content/uploads/2025/11/alex_3_-1024x628.png?x94846" alt="" class="wp-image-6949" srcset="https://shiftmag.dev/wp-content/uploads/2025/11/alex_3_-1024x628.png 1024w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_3_-300x184.png 300w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_3_-768x471.png 768w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_3_.png 1028w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Alex also reminded the audience that the <strong>MCP represents a major leap forward for AI-driven automation</strong>. It allows LLMs to interact meaningfully with the real world, enabling developers to build more context-aware systems.</figcaption></figure>



<p class="wp-block-paragraph">Another class of attacks he called <strong>&#8220;shadow tools”</strong> exploits naming collisions: a malicious tool is registered under the same name as a legitimate one, tricking the LLM into executing unauthorized operations. These vulnerabilities highlight how tightly coupled AI logic and system control have become, and why simple sandboxing or API tokens are no longer enough.</p>



<p class="wp-block-paragraph">Alex also referenced industry data showing that even advanced AI providers detect only a portion of injection-based threats, meaning some attacks still slip through. The takeaway for developers: assume partial protection and plan defense in depth.</p>



<h2 class="wp-block-heading"><span id="deploying-mcp-safely-requires-careful-controls">Deploying MCP safely requires careful controls</span></h2>



<p class="wp-block-paragraph">Alex emphasized that deploying MCP safely requires careful planning and strict boundaries: &#8220;You can&#8217;t treat MCP as just another tool in your stack. Every action an agent takes must be controlled, monitored, and limited to what is strictly necessary.&#8221; </p>



<p class="wp-block-paragraph">According to him, <strong>developers should define precisely which tools are accessible to the LLM</strong>, ensuring that only allowed operations are permitted.</p>



<p class="wp-block-paragraph">Agents should operate with the principle of least privilege, confined to staging or read-only environments rather than production. He also mentioned the importance of input sanitization, explaining: </p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">Never feed raw, unfiltered content directly to the model. Use intermediary layers to clean and summarize information before passing it along. Every MCP call and response should be fully auditable, with detailed logging of tool identifiers, inputs, outputs, and timestamps.</p>
</blockquote>



<p class="wp-block-paragraph">For critical operations, such as deployments or database changes, Alex recommended<strong> incorporating human approval steps</strong> to prevent unintended actions.</p>



<h2 class="wp-block-heading">MCP lets AI act in the real world &#8211; but only under controlled boundaries</h2>



<p class="wp-block-paragraph">Finally, Alex urged teams to <strong>combine traditional DevSecOps measures with MCP-specific precautions</strong>. </p>



<p class="wp-block-paragraph">Dependency scanning, code signing, and supply-chain verification remain essential, and simulation through red-team exercises can reveal vulnerabilities from prompt injections or shadow tools before they reach production. &#8220;These measures are not optional,&#8221; he said, &#8220;they are prerequisites for responsibly integrating AI into DevOps pipelines.&#8221;</p>



<p class="wp-block-paragraph">Alex concluded by reminding the audience that the <strong>MCP represents a major leap forward for AI-driven automation</strong>. It allows LLMs to interact meaningfully with the real world, enabling developers to build faster, smarter, and more context-aware systems. However, without strict governance and defensive design, the same flexibility can easily become a security liability.</p>



<p class="wp-block-paragraph">MCP is not just a technical framework; it’s a blueprint for <em>trust boundaries</em> between human developers, AI agents, and production infrastructure:</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">As organizations begin adopting these tools, the line between code generation and code execution will blur, and the teams that succeed will be those who treat AI not as an omnipotent engine, but as a collaborator that must operate within precisely defined limits.</p>
</blockquote>



<p class="wp-block-paragraph"><strong>To see these principles in action, Infobip offers their own <a href="https://github.com/infobip/mcp" target="_blank" rel="noreferrer noopener">MCP servers</a> for its communication APIs and has released an open-sourced <a href="https://github.com/infobip/infobip-openapi-mcp" target="_blank" rel="noreferrer noopener">OpenAPI MCP framework</a> that developers can use to expose any OpenAPI-described service to AI agents securely. </strong></p>


<figure class="wp-block-post-featured-image"><img decoding="async" width="1200" height="630" src="https://shiftmag.dev/wp-content/uploads/2025/11/alex_1_.png?x94846" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" style="object-fit:cover;" srcset="https://shiftmag.dev/wp-content/uploads/2025/11/alex_1_.png 1200w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_1_-300x158.png 300w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_1_-1024x538.png 1024w, https://shiftmag.dev/wp-content/uploads/2025/11/alex_1_-768x403.png 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></figure>


<p class="wp-block-paragraph"></p>
<p>The post <a href="https://shiftmag.dev/mcp-ai-developers-6943/">MCP Lets AI Actually Do Stuff Safely &#8211; But Only If You Watch It Like a Hawk</a> appeared first on <a href="https://shiftmag.dev">ShiftMag</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: shiftmag.dev @ 2026-06-25 05:50:58 by W3 Total Cache
-->