Skip to content

MCP Server Overview

PBMCPServer.exe is a standalone console application that exposes Paquet Builder’s full project engine via the Model Context Protocol (MCP). It allows external AI tools — such as Claude Code, Cursor, Windsurf, or any MCP-compatible client — to open, modify, compile, and save installer projects programmatically, without a GUI.

Here, Claude Code is connected to the Paquet Builder MCP Server and updates all version numbers, copyright, and other project settings in a single command through a natural language conversation:

Claude Code using the Paquet Builder MCP Server


The Model Context Protocol (MCP) is an open standard that enables AI assistants to connect to external tools and data sources. It uses JSON-RPC 2.0 messages exchanged over standard input/output (stdio). Paquet Builder implements the MCP 2025-03-26 specification.


Use CaseDescription
AI-driven project creationUse Claude Code or Cursor to set up a complete installer project via natural language conversation
CI/CD automationIntegrate installer builds into your deployment pipeline
Batch modificationsApply changes to multiple projects programmatically
Headless compilationCompile installers on a build server without opening the GUI
Scripted workflowsCombine MCP tools into complex automation sequences

Paquet Builder offers two AI integration points. Choose the one that fits your workflow:

FeatureEmbedded AI AssistantMCP Server
InterfaceBuilt-in chat windowExternal AI client
Requires GUIYes (Paquet Builder open)No (fully headless)
Change confirmationAction cards (Apply/Cancel)Direct mutations
Project savingManual (click Save)Automatic after each change
AI providerConfigured in Paquet BuilderManaged by the AI client
Best forInteractive, conversational useAutomation, CI/CD, scripted work

The MCP server exposes over 20 tools organized into categories:

ToolDescription
open_projectOpen an existing .pbpx project file
close_projectClose the current project
save_projectSave the project to disk
new_projectCreate a new blank project
list_recent_projectsList recently opened project files
get_project_infoGet a comprehensive project overview

  1. Install Paquet Builder (GUI) on the target computer.

  2. Download the MCP server — In Paquet Builder, go to Help → Check for Updates & Addons to download the MCP server installer. You can also download it directly from the MCP Server download page.

  3. Run the MCP server installer. It will install PBMCPServer.exe into the Paquet Builder installation folder.

  4. Configure your AI client — Add the MCP server to Claude Code, Cursor, or Windsurf settings.

  5. Start chatting — Ask the AI to open a project and make changes.