MCP…. So What’s That All About? | Issue #57


Hey there,

Heard of MCP? It stands for Model Context Protocol: an open standard that lets AI models like Claude or ChatGPT connect to real tools and data.

In my latest video, I explain what MCP actually is, and show a working example where Claude can search YouTube videos using MCP.

In the video you’ll learn:

  • Why AI models can’t just call your API
  • How MCP bridges that gap
  • Two ways to structure your MCP integration

Happy coding!

Cheers,

Arjan

# News

Upcoming Python Documentary

CultRepo (formerly Honeypot) has announced a documentary covering Python's slow-and-steady rise, how it evolved over the years and how the language has impacted basically everything. It includes interviews with Guido van Rossum, Travis Oliphant, Barry Warsaw, and more.

The documentary is expected to launch later this year. I'm very much looking forward to it and I'll likely post a video about it myself on my YouTube-channel to share my thoughts. You can watch the trailer here.

# Community

PyCrucible: Run Python Apps Instantly — No Setup Needed

One of the members of my Discord server is working on a new open-source tool: PyCrucible. It's built in Rust and powered by UV, it creates a single cross-platform binary that:

  • Bundles your Python app and dependencies
  • Auto-downloads the correct Python interpreter via UV
  • Extracts and runs with no user setup required

It's really cool and I highly recommend you check it out (repo here).

👉 Join the community now to read the discussion about the tool and share your thoughts.


Do you enjoy my content on YouTube and would you like to dive in deeper?

🚀 Check out my online courses

My courses have helped thousands of developers take the next step in their careers. Check out these courses to help grow your skills and become a senior developer:

🔧 Need help with a complex codebase?

If your team is struggling with tech debt, unclear architecture, or cloud costs that keep creeping up, my team and I can help. We don’t just review, we get in and fix things. We’re only working with a few companies at a time to stay focused, so if it sounds like a fit:

Unsubscribe | Send by ArjanCodes

Wolvenplein 25, Utrecht, UT 3512 CK

The Friday Loop

Every Friday, you'll get a recap of the most important and exciting Python and coding news. The Friday Loop also keeps everyone posted on new ArjanCodes courses and any limited offers coming up.

Read more from The Friday Loop

AI can write code now. But you already knew that :). If you’ve tried using AI seriously, you’ve probably noticed something: the code works (kind of) and then slowly turns into a mess. In this week’s video, I show why prompting alone isn’t enough and why software design is becoming more important, not less, in an AI-driven world. I walk through a real interaction with an AI coding assistant and show how thinking in terms of responsibilities, structure, and system boundaries completely changes...

In a recent video on refactoring complicated business logic, I managed to introduce several subtle errors. Many of you immediately spotted them in the comments. That’s exactly what my first video in 2026 is about. I walk through the mistakes I made, explain why they happened, and show how easy it is to accidentally change behavior when you refactor code. Even with tests in place and decent coverage, assumptions can sneak in, business rules can shift, and logic can quietly break without anyone...

You’ve tested the endpoint. The response looks right. No errors in the terminal. So you’re done, right? Well... not quite. In the last video of this year (time flies!) I start with a tiny FastAPI app that "works", and step by step, I turn it into something that’s actually ready for production (and that's more work than you think). That includes: Proper type usage Input validation and error handling Configuration management Rate limiting to prevent abuse ...and more! All using a real example:...