Wyreup for agents.

An MCP server that exposes 53 tools to Claude, Claude Code, and any MCP-compatible client.

What is MCP

MCP is an open protocol that lets AI assistants call external tools. Wyreup's MCP server wraps all 53 Wyreup tools so your agent can compress images, redact PDFs, or blur faces on your machine — without your files ever leaving it. Learn more at modelcontextprotocol.io.

Install in Claude Code / Claude Desktop

Add the following to your MCP config. The server runs via npx — no global install required.

MCP server config
{
  "mcpServers": {
    "wyreup": {
      "command": "npx",
      "args": ["-y", "@wyreup/mcp"]
    }
  }
}
  • Claude Desktop (macOS) ~/Library/Application Support/Claude/claude_desktop_config.json
  • Claude Desktop (Windows) %APPDATA%\Claude\claude_desktop_config.json
  • Claude Code (project) .mcp.json in your project root

How agents invoke Wyreup tools

Each Wyreup tool is a named MCP tool. Pass input_paths, output_path (or output_dir for multi-output tools), and params for tool-specific options.

Example MCP tool call
tool: "compress"
arguments:
  input_paths: ["/Users/alice/photo.jpg"]
  output_path: "/Users/alice/photo-compressed.jpg"
  params:
    quality: 80

Pair with the Wyreup skill

The MCP server gives your agent the tools. The skill teaches Claude when and how to use them — recognizing file tasks, choosing the right tool, and handling results correctly.

Install the skill →