MCP + Skills Framework: Guiding AI Agents for Efficient Data Science Workflows

A DevTalk on guiding AI agents (Claude, GPT) to operate correctly within a specific data platform, using an MCP server + skills framework. The core problem: agents are good at figuring out what to do in a data science workflow, but poor at choosing how to do it efficiently on a real data platform.
Common Agent Inefficiencies
- Generating client-heavy code instead of pushing work down to the database
- Moving more data/tokens than needed
- Ignoring native capabilities (analytics functions, ML, etc.)
- Falling back to generic patterns that don't scale
Solution: MCP Server + Skills Framework
Instead of letting the agent “figure it out,” constrain and guide it with platform-aware context. The approach focuses on:
- Selecting the right analytic functions
- Knowing when SQL isn't enough
- Using in-database ML / stats / text / vector operations
- Chaining everything into end-to-end workflows that are actually deployable
Resources
- Repo: github.com/ksturgeon-td/tdsql-mcp
- Free environment to try it: Teradata ClearScape Analytics Demo
- Live session recording: YouTube
If you're experimenting with Claude + MCP or tool use and have hit inefficiency or hallucination issues with real data systems, this approach is worth exploring.
📖 Read the full source: r/ClaudeAI
👀 See Also

FixAI Dev: A Consumer Rights Game Using Claude Haiku with Strict JSON Contracts
A developer built a browser game where Claude Haiku acts as a corporate AI denying consumer requests; players argue using real consumer protection laws across 37 cases in EU, US, UK, and Australia. The architecture uses Haiku for language only, with server-side game logic and strict JSON contracts between components.

HomeButler: MCP Server for Managing Homelab Servers from Claude Without API Keys
HomeButler is an MCP server that lets Claude install, monitor, and manage self-hosted apps on homelab servers without requiring API keys. It runs locally, keeps everything on your network, and was built with Claude Code.

Helix: Open-Source Framework Turns Claude into Personal AI Agent for macOS
Helix is an open-source framework that connects Claude via Claude Code in Terminal to macOS through four MCP server plugins, enabling Claude to control applications, maintain persistent memory, run scheduled tasks, and operate with local voice processing.

Be My Butler: Multi-Agent Pipeline for AI Code Verification
Be My Butler is an open-source multi-agent pipeline where different AI models review each other's code through blind verification. The system addresses the problem of AI agents incorrectly reporting their own code as functional.