TigerData logo
TigerData logo
  • Product

    Product

    Tiger Cloud

    Robust elastic cloud platform for startups and enterprises

    TimescaleDB Enterprise

    Self-managed TimescaleDB for on-prem, edge and private cloud

    Open source

    TimescaleDB

    Time-series, real-time analytics and events on Postgres

    Search

    Vector and keyword search on Postgres

  • Industry

    Data Centers

    Energy & Utilities

    Oilfield Services

    Smart Manufacturing

    Crypto

  • Docs
  • Pricing
  • Developer Hub

    Changelog

    Benchmarks

    Blog

    Community

    Customer Stories

    Events

    Support

    Integrations

    Launch Hub

  • Company

    About

    TigerData logo

    Timescale

    Partners

    Security

    Careers

Contact usStart a free trial
Tiger Data

Products

  • TimescaleDB
  • Tiger Cloud
  • TimescaleDB Enterprise
  • Postgres Search Stack

Industry

  • Data Centers
  • Energy & Utilities
  • Oilfield Services
  • Smart Manufacturing
  • Crypto

Support

  • Cloud Status
  • Support
  • Security
  • Terms of Service
  • Code Of Conduct

Learn

  • Documentation
  • Blog
  • Tutorials
  • Changelog
  • Success Stories

Company

  • About
  • Contact Us
  • Careers
  • Newsroom
  • Brand
  • Events

Products

  • TimescaleDB
  • Tiger Cloud
  • TimescaleDB Enterprise
  • Postgres Search Stack

Industry

  • Data Centers
  • Energy & Utilities
  • Oilfield Services
  • Smart Manufacturing
  • Crypto

Support

  • Cloud Status
  • Support
  • Security
  • Terms of Service
  • Code Of Conduct

Learn

  • Documentation
  • Blog
  • Tutorials
  • Changelog
  • Success Stories

Company

  • About
  • Contact Us
  • Careers
  • Newsroom
  • Brand
  • Events
Privacy preferencesLegalPrivacySitemap
Gold Partner with Inductive Automation — Ignition

2026 (c) Timescale, Inc., d/b/a Tiger Data.
All rights reserved.

Tiger Data
GOLD PARTNER WITHINDUCTIVE AUTOMATION

2026 (c) Timescale, Inc., d/b/a Tiger Data.
All rights reserved.

Privacy preferencesLegalPrivacySitemap

The Big Shift in MCP: Why AI Guides Will Replace API Wrappers

Matvey Arye

By Matvey Arye

November 25th, 2025

3 min

Share

Matvey Arye

By Matvey Arye

November 25th, 2025

3 min

Share

Copy as HTML

Open in ChatGPT

Open in Claude

Open in v0

Announcements & Releases

AI

Table of contents

  1. 01 The Problem: APIs Are Neutral, Good Engineering is Opinionated
  2. 02 The Solution: The AI Guide
  3. 03 Moving Intelligence into a Portable MCP Tool
  4. 04 Build This With Us
Start building
The Big Shift in MCP: Why AI Guides Will Replace API Wrappers

TL;DR: The MCP ecosystem is about to change. Wrappers aren’t enough. As models gain power, the risk of letting them make bad engineering decisions grows—and the solution isn’t more access, it’s more judgment.

An MCP client can successfully execute a tool call while simultaneously making a terrible engineering decision. The API interaction works perfectly. The JSON payload is valid. The database accepts the command. Yet the result—a schema with unindexed foreign keys, a timestamp column that should have been timestamptz, or a misconfigured generic flag—is technical debt created at machine speed.

The problem lies in how the ecosystem currently builds MCP servers. Most developers are building wrappers. They take an existing API, dust it in magic MCP particles, and hand it to the model.

These wrappers assume that because the model knows the vocabulary of the API, it has the taste necessary to write good code.

Often, it doesn’t.

The Problem: APIs Are Neutral, Good Engineering is Opinionated

Wrappers expose capability. They faithfully pass commands to the underlying system. But most APIs are designed to be agnostic—they let you run DROP TABLE just as easily as they let you run SELECT. They define what is possible, not what is wise.

This gap is becoming dangerous as agents get faster.

The industry is currently rushing to adopt "Code Execution" (Anthropic) and "Code Mode" (Cloudflare). These are innovations that allow models to write scripts to orchestrate tools, rather than firing off inefficient, chatty JSON-RPC calls. This solves the efficiency problem and allows models to create better APIs.

But it does not solve the judgment problem.

If you give a client a "Code Mode" sandbox and a set of neutral API wrappers, you have simply given it a faster way to write bad code. A wrapper like execute_sql will happily execute a query that triggers a sequential scan on a billion-row table. The API is working exactly as designed. The agent failed because it lacked the experience to know better.

We realized that more access wasn't the answer. We needed a way to expose expertise.

The Solution: The AI Guide

We believe the future of MCP isn't just about accessing tools, but about embedding judgment. We call this concept an AI Guide.

An AI guide is an MCP server designed to teach a model how to think, not just what it can touch. Unlike a neutral API wrapper, a guide is intentionally opinionated. It encodes the specific patterns, preferences, and hard-earned lessons of experienced engineers.

Instead of simply handing the model a database connection and waiting for a CREATE TABLE command, a guide dictates the workflow. It acts less like a CLI and more like a senior engineer pairing with a junior.

Case Study: How pg-aiguide Works

We built pg-aiguide to test this distinction. It is a reasoning layer for Postgres that sits between the agent and the database.

At its core is a library of curated skills. These are structured workflows that model expert judgment. For example, when an agent attempts to design a schema, the guide does not simply ask “what tables do you want?” It pushes the agent through a deliberate design path:

  • Validate the entities and relationships.
  • Check for missing primary keys and unindexed foreign keys.
  • Evaluate datatype choices against storage costs and desired semantics.
  • Compare the emerging design against known patterns for similar workloads.

Crucially, the guide pairs this reasoning with semantic search over authoritative documentation. When the model needs to understand a specific Postgres configuration, the guide retrieves the exact manual page. This grounds the model’s decisions in current facts, preventing it from hallucinating flags that haven't existed since Postgres 9.6.

Ironically, we are making all this knowledge accessible using an MCP tool, but one that exposes knowledge not capabilities.

Moving Intelligence into a Portable MCP Tool 

Across the industry, everyone is converging on the same pattern: structured, retrieval-grounded reasoning. Claude’s Skills do this. OpenAI’s ReAct-inspired flows do this. Cursor and Windsurf’s reasoning chains do this. Even proprietary coding agents are evolving toward stepwise, verifiable workflows. The pattern is clear, but each implementation lives in a closed garden tied to a specific model provider or coding agent.

We are changing this.

By building Guides using MCP tools, we make them portable. A guide becomes a tool that any model or agent can use.

  • The logic stays the same.
  • The reasoning path stays the same.
  • The quality bar stays the same.

Whether you load Claude, OpenAI, or a local Llama model, using Claude Code, Cursor or Windsurf the guide enforces the same engineering standards.

We are still early. We are currently expanding pg-aiguide to include:

  • Hybrid Search: Blending keyword and semantic search to stop models from guessing syntax.
  • Golden Patterns: Injecting verified code snippets for high-risk operations.
  • Self-Correction: Linting steps that force the agent to validate its own work before execution.

Build This With Us

The pattern of "dumb wrappers" has a ceiling. To build agents that can actually be trusted in production, we need tools that contain expertise.

We are building pg-aiguide in the open. If you are a Postgres expert, or if you are building agents and are tired of cleaning up their messes, come help us define what a "Guide" looks like.


About the author

Matvey Arye

By Matvey Arye

// Related posts

Tiger Cloud on Azure: Why Fully-Managed Timescaledb Beats Self-Hosting And Other Managed Options
Tiger Cloud on Azure: Why Fully-Managed Timescaledb Beats Self-Hosting And Other Managed Options

Announcements & Releases

Tiger Cloud

Tiger Cloud on Azure: Why Fully-Managed Timescaledb Beats Self-Hosting And Other Managed Options

Tiger Cloud on Azure vs self-hosting TimescaleDB: skip-scan, compression, continuous aggregates, tiered storage, private endpoints, and cross-region backups—fully managed.

By Nicole Ghalwash

September 3rd, 2026

TimescaleDB 2.28: Faster Queries, Lighter Operations, and Better Schema Evolution
TimescaleDB 2.28: Faster Queries, Lighter Operations, and Better Schema Evolution

Announcements & Releases

TimescaleDB

TimescaleDB 2.28: Faster Queries, Lighter Operations, and Better Schema Evolution

TimescaleDB 2.28 adds schema evolution for continuous aggregates, lighter refreshes, faster compressed queries, and ends PostgreSQL 15 support.

By Nicole Ghalwash

July 29th, 2026

TimescaleDB 2.27: Broader Vectorized Execution, Up to 160x More Efficient UPDATE/DELETE, and Smarter UPSERT Pruning
TimescaleDB 2.27: Broader Vectorized Execution, Up to 160x More Efficient UPDATE/DELETE, and Smarter UPSERT Pruning

Announcements & Releases

TimescaleDB

TimescaleDB 2.27: Broader Vectorized Execution, Up to 160x More Efficient UPDATE/DELETE, and Smarter UPSERT Pruning

Up to 160x more efficient UPDATE/DELETE, 30% to 2x faster vectorized execution, and skip unnecessary decompression + compression. Here's what's new in TimescaleDB 2.27.

By Brandon Purcell

June 9th, 2026

Stay updated with new
posts and releases.

Receive the latest technical articles and release notes in your inbox.