<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Misha Hohlovici</title>
    <description>The latest articles on DEV Community by Misha Hohlovici (@mikehoh).</description>
    <link>https://dev.to/mikehoh</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4066431%2F880bd05a-be57-4ff1-b32c-381d9480b32f.jpg</url>
      <title>DEV Community: Misha Hohlovici</title>
      <link>https://dev.to/mikehoh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mikehoh"/>
    <language>en</language>
    <item>
      <title>Stop pasting .env files in Slack. I built an MCP server to share secrets directly from my code editor.</title>
      <dc:creator>Misha Hohlovici</dc:creator>
      <pubDate>Thu, 06 Aug 2026 20:49:46 +0000</pubDate>
      <link>https://dev.to/mikehoh/stop-pasting-env-files-in-slack-i-built-an-mcp-server-to-share-secrets-directly-from-my-code-pi2</link>
      <guid>https://dev.to/mikehoh/stop-pasting-env-files-in-slack-i-built-an-mcp-server-to-share-secrets-directly-from-my-code-pi2</guid>
      <description>&lt;p&gt;We've all been there. You need to share a &lt;code&gt;.env&lt;/code&gt; file or an API key with a teammate. You copy it, switch to Slack or Telegram, paste it, and just hope that chat history never gets hacked.&lt;/p&gt;

&lt;p&gt;It's a massive security hole, but we do it because it's fast.&lt;/p&gt;

&lt;p&gt;I wanted to make secure sharing just as fast, but without leaving my AI code editor. So, at my studio Webix Soft, I built Whisper - a client-side encrypted secret sharing tool with a built-in MCP server.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmt1j9d65ib1r6jezdn62.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmt1j9d65ib1r6jezdn62.png" alt="Whisper form" width="800" height="737"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The MCP Magic (Why I really built this)
&lt;/h2&gt;

&lt;p&gt;Context switching breaks your flow. If you use AI editors like Cursor/Windsurf or Claude/Codex leaving your code to open a browser and generate a secure link is annoying.&lt;/p&gt;

&lt;p&gt;With the @webixsoft/whisper-mcp package, you don't have to. You just ask your AI assistant:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"Create a secure link for my .env file."
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. The AI uses the MCP tool, encrypts your file locally on your machine, and drops a self-destructing secure link right into your chat. You copy the link, send it to your colleague, and keep coding.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flurd6yuc4kzj8ua5upbj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flurd6yuc4kzj8ua5upbj.png" alt="Expamle from Codex" width="800" height="561"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How the security works (Zero-Knowledge)
&lt;/h2&gt;

&lt;p&gt;Client-side encryption: Your secret is encrypted in your browser (or via the local MCP server) before it ever hits the internet.&lt;/p&gt;

&lt;p&gt;The Key is in the Hash: The decryption key is generated locally and placed inside the URL hash (like #KEY). Our servers only receive a meaningless ciphertext and never see the key.&lt;/p&gt;

&lt;p&gt;Burn after reading: When your teammate opens the link, their browser decrypts it locally. Once viewed, the data is wiped from our database forever. We don't even collect IP addresses.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7izfbs74l4hldrbgknay.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7izfbs74l4hldrbgknay.png" alt="Received secret MD file" width="800" height="581"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  A few extra nice things
&lt;/h2&gt;

&lt;p&gt;Markdown Rendering: If you share a Markdown-formatted config or doc, Whisper renders it beautifully on the other side. You can easily switch to the raw source, copy it, or download it as a file.&lt;/p&gt;

&lt;p&gt;Dark Mode: Because nobody wants to be blinded by a white screen at 2 AM. You can toggle it on the fly.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6fuawao7uqigzendxha8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6fuawao7uqigzendxha8.png" alt="Dark theme, env file" width="800" height="538"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love for you to try it out and hear your thoughts, especially on the MCP workflow!&lt;/p&gt;

&lt;p&gt;You can check out the web app here: &lt;a href="https://whisper.webixsoft.com/" rel="noopener noreferrer"&gt;https://whisper.webixsoft.com/&lt;/a&gt;&lt;br&gt;
And find the MCP package on npm: &lt;a href="https://www.npmjs.com/package/@webixsoft/whisper-mcp" rel="noopener noreferrer"&gt;@webixsoft/whisper-mcp&lt;/a&gt;&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>security</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
