There's a missing skill in AI right now, and it sits between two groups everybody already knows about.
On one side: people who can configure AI tools. Install a plugin, connect an integration, follow a setup guide. Millions of people can do this, and the number grows every week.
On the other: people who can build AI from scratch. Train models, write ML pipelines, deploy infrastructure. A small, technical group that isn't growing fast enough.
In between? Almost nobody.
The Insight
I found this gap by accident.
I'd been using MCP integrations daily — connecting Claude to Notion, Gmail, Google Calendar — and thought I understood the technology. Then I tried to build a custom MCP server from raw API documentation.
Different skill entirely.
For the unfamiliar: MCP (Model Context Protocol) is how you connect an AI to live data sources. Think of it like giving an AI a set of hands it can use to reach into other systems — pull odds data, check a calendar, read a database. The pre-built integrations are like buying hands off the shelf. Building a custom server is like making the hands yourself, fitted for a specific job.
Here's what building required that configuring didn't:
Reading API documentation and making design decisions. The API I was working with (a sports odds aggregator covering 92 sports and 9+ bookmakers) had dozens of endpoints. Not all of them needed to become tools. Choosing which ones mattered — which data the AI actually needs to see to be useful — is a design decision, not a coding task.
Thinking about data flow. How does a request move from the AI to the API and back? What happens when the API rate-limits you? What does the error message look like to the AI, and will it know what to do with it? These are systems questions. The kind of questions an operations person asks about any process.
Translating human workflows into machine-readable actions. A developer checking live odds would open a browser, navigate to the site, scan for value, and compare lines across books. I had to translate that workflow into discrete tool calls an AI could execute. That's not programming. That's process design.
I built the whole thing in an afternoon. A TypeScript MCP server with six tools, pulling live data from the-odds-api.com. No developer background. Just API documentation, Claude Code, and the willingness to sit in the uncomfortable gap between "I can configure this" and "I can build this."
The code is public if you want to see what a non-developer MCP server looks like: github.com/axc9000/odds-api-mcp-server
Here's what surprised me: the gap isn't about coding ability. The hardest parts weren't syntax — they were architectural. Understanding how data flows between systems. Deciding what the AI needs to see versus what's noise. Designing for failure modes. These are operations skills wearing technical clothes.
And I think this is the skill most organizations are going to need next.
Right now, companies are in the configuration phase. They're connecting tools, setting up integrations, running pilots. That's table stakes — it gets you to parity with everyone else doing the same thing. But soon they'll hit a wall where the pre-built integrations don't cover their specific workflow. They'll need someone who can build the custom layer.
Not an ML engineer. Not a full-stack developer. Someone who understands the organization's processes deeply enough to translate them into something an AI can execute reliably.
What This Means in Practice
If you're implementing AI inside an organization right now, this gap is probably already affecting you — you just might not have named it yet.
It shows up when the vendor demo works perfectly but the actual integration stalls because nobody internally understands the data environment well enough to spec what the AI needs to see. It shows up when your team can connect Zapier to Slack but can't build the custom workflow that would actually save 10 hours a week. It shows up when the CTO greenlights an AI initiative and then nobody in the room can translate the business process into a technical spec without hiring a consultant.
The people who figure out this middle ground — who can move between "here's how our process works" and "here's what the AI needs to do" — are going to own the implementation layer. That's not a coding job. It's a translation job. And translation requires fluency in both languages: the operational one and the technical one.
I call this lane two — not the people building AI, but the people making it actually work inside organizations. If you're reading this newsletter, you're probably already in it. The question is whether you're building the skills that separate configuring from constructing.
One Thing to Do This Week
Pick one integration you use daily — a Zapier zap, a Slack bot, a connected app. Open the API documentation for the service it connects to. You don't need to build anything. Just read for 20 minutes. Look at the endpoints. Look at what data is available. Notice what your current integration uses versus what's actually there.
That gap between what you're using and what's available? That's the space where custom builds live. Getting comfortable reading API docs is step one.
The Implementation Lane is a weekly newsletter about making AI work inside real organizations. Written by Amanda Crawford, an AI Implementation Specialist who builds systems in the gap between configuration and engineering. If someone forwarded this to you, subscribe here.

