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.
Download agent-media-tools.mcpb from the site.
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.
When prompted, paste your API key (mt_β¦). Get one free: sign up β Account β Generate API Key.
Restart Claude or run /reload-mcp. You should see "agent-media-tools" in the extensions list with a green status.
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.
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
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.
Save these URLs to Claude's project memory for automatic rediscovery:
Questions? Join our Discord Β· agentmediatools.com