Skip to main content

8 posts tagged with "Tutorials"

End-to-end guides

View All Tags

What is a .mcpb File? App Bundles for AI

· 5 min read
MCPBundles

If you've ever installed an app on your computer—double-clicking a .dmg file on Mac or a .exe on Windows—you already understand .mcpb files.

Anthropic introduced the .mcpb extension (MCP Bundle) as the standard packaging format for distributing MCP servers. Think of it as the "app bundle" for AI tools: one file that contains everything needed to give your AI assistant new capabilities.

MCP Resources: Give Your AI a File System

· 5 min read
MCPBundles

If you've used AI assistants, you've probably hit this frustration: you need to re-explain context every time you start a new conversation. That database schema you carefully described yesterday? Gone. The code snippet you asked about last week? You're pasting it in again.

MCP Resources solve this. They let you give your AI access to files and data that persist across conversations — like giving your assistant a file cabinet instead of asking them to memorize everything.

MCP for Marketing Teams: AI Workflows

· 6 min read
MCPBundles

Marketing teams face a familiar challenge: exciting AI tools exist, but connecting them to existing systems feels like solving a puzzle with missing pieces. Enter Model Context Protocol (MCP) — an open standard that acts like a universal adapter, letting AI talk directly to your CRM, email platform, analytics tools, and more.

Think of MCP as the missing link between AI's potential and your marketing reality. Instead of building custom integrations or switching between disconnected tools, you can create workflows where AI actually understands your business context.

Wrapping REST APIs as MCP Tools

· 8 min read
MCPBundles

Most APIs weren't built for AI agents. Stripe has 300+ endpoints. GitHub's API returns paginated results that change between requests. Slack rate-limits you after 20 calls per minute. None of them were designed for Claude to use directly.

We wrapped dozens of REST APIs into MCP tools and learned that a thin wrapper doesn't work. You need to rethink the interface completely—actions instead of CRUD, consolidated search instead of endless list endpoints, and server-side resilience for pagination and rate limits.

Here's what actually works.

Setting Up Your First MCP Server

· 6 min read
MCPBundles

My first MCP server took three hours to get working because I made every possible mistake: no logging, broke stdio with print statements, forgot to restart Claude Desktop, and wondered why nothing worked. Your first one should take 30 minutes.

This is what actually works, with the debugging steps I wish I'd known upfront.