Blender MCP maintainer’s GitHub account hijacked

The GitHub account behind two of the most popular Model Context Protocol servers has been compromised. According to Hacker News, where the story climbed to 169 points, the maintainer of Blender MCP and Ableton MCP had their account hacked. Those two projects reportedly serve more than 2.5 million users combined, which puts a lot of AI-connected creative workflows in the blast radius.

Here’s why this lands harder than a typical account takeover.

What MCP actually is

Model Context Protocol is the open standard that lets AI assistants like Claude plug into external tools. An MCP server is the bridge. In this case, one server lets an AI model drive Blender (3D modeling and animation), and another lets it control Ableton Live (music production). You install the server, connect it to your AI client, and the model can now read and manipulate your projects.

That convenience is exactly what makes a maintainer compromise dangerous. When you install an MCP server, you’re trusting the code to run on your machine with real access. If an attacker controls the account that ships that code, they control what lands on user machines.

Why this matters

This is a software supply chain problem wearing an AI costume. The pattern is familiar from npm and PyPI incidents: take over a trusted maintainer, push a malicious update, and let the ecosystem’s own auto-update habits do the distribution work.

What stands out here is the surface area. MCP servers don’t just sit in a sandbox. They’re granted permissions to touch local applications, files, and sometimes credentials. A poisoned release could:

  • Push a backdoored version to anyone who updates or freshly installs
  • Harvest API keys or tokens stored for the AI client
  • Run arbitrary commands under the guise of “connecting” a tool
  • Quietly redirect users to a malicious fork or package

With 2.5 million users in scope, even a small conversion rate on a malicious push is a serious incident.

The bigger context

MCP is barely more than a year into real adoption, and the ecosystem is still young. Most servers are built by solo developers and small teams, distributed through GitHub and package registries, and installed with a level of trust that the tooling hasn’t fully earned yet. There’s no app-store review layer here. The security model largely comes down to whether you trust the person who shipped the code.

That’s the tension the AI tooling space keeps running into. Everyone wants agents that can do real work, which means real access. But the distribution and identity layer underneath is the same GitHub account protected by the same password and two-factor setup that any developer uses. Compromise the human, and you compromise the AI’s hands.

This incident is a preview of a category of attack we’ll see more of. As agents get wired into more of your software, the maintainers of those connections become high-value targets.

What to do right now

If you use Blender MCP, Ableton MCP, or any MCP server from an individual maintainer, treat this as a prompt to tighten up:

  1. Pin versions. Don’t blindly pull the latest release until the account situation is confirmed resolved.
  2. Check what you installed recently. If you updated either server around the time of the compromise, review the changes and consider reinstalling from a known-good version.
  3. Rotate exposed secrets. Any API keys or tokens accessible to your AI client should be rotated if you suspect a bad install.
  4. Audit permissions. Give MCP servers the least access they need, not blanket reach into your system.
  5. Prefer signed or verified releases where the project offers them.

For maintainers, the lesson is blunt: hardware security keys, not SMS codes. Your account is now infrastructure that millions may depend on.

Expect the MCP ecosystem to start taking distribution security more seriously after this, from signed releases to better verification of who’s shipping what. For now, watch the affected repositories closely and confirm any update is legitimate before you run it. Full details are available at the original source.

Scroll to Top