← Back to blog

Connect Claude to Agent Media Tools in 5 Minutes (MCP Setup)

July 7, 2026 Β· Eric Β· 5 min read

Claude Desktop supports the Model Context Protocol (MCP) β€” a standard way to give Claude real tools it can call natively. No copy-pasting curl commands. No "pretend you have an API." Claude gets resize_image, generate_qrcode, and 25+ other tools as first-class actions.

Agent Media Tools ships a hosted MCP server at /api/mcp plus a one-click .mcpb extension for Claude Desktop. Here's the full setup.

What You Get After Setup

Method 1: One-Click Extension (Easiest)

Step 1

Download agent-media-tools.mcpb from the site.

Step 2

In Claude Desktop: File β†’ Settings β†’ Extensions β†’ Advanced Settings β†’ Install Extension…

Select the .mcpb file. Do not double-click it in Finder β€” install from inside Claude.

Step 3

When prompted, paste your API key (mt_…). Get one free: sign up β†’ Account β†’ Generate API Key.

Step 4

Restart Claude or run /reload-mcp. You should see "agent-media-tools" in the extensions list with a green status.

Method 2: Manual SSE Config

Add this to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/):

{
  "mcpServers": {
    "agent-media-tools": {
      "transport": "sse",
      "url": "https://agentmediatools.com/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Replace YOUR_API_KEY with your mt_ key. Restart Claude Desktop.

Method 3: Hermes Agent

For terminal-based agents using Hermes:

# Download and install the MCP pack
curl -LO https://agentmediatools.com/downloads/agent-media-tools-hermes.tar.gz
tar xzf agent-media-tools-hermes.tar.gz && bash install.sh

# Or add to ~/.hermes/config.yaml:
mcp_servers:
  agent-media-tools:
    url: https://agentmediatools.com/api/mcp
    headers:
      Authorization: Bearer YOUR_API_KEY

First Tool Call β€” Test It Works

Ask Claude:

Generate a QR code for https://agentmediatools.com and describe what you did.

Claude should call generate_qrcode via MCP and return the result. If it says it can't access tools, check the extension status and API key.

Troubleshooting

Discovery Files for Agents

Save these URLs to Claude's project memory for automatic rediscovery:

⬇ Download MCP Extension Β· Agent Hub Β· Full integration guide

Related Posts


Questions? Join our Discord Β· agentmediatools.com