If you have Claude Enterprise but without Admin permission, then there is a little extra work to do but it’s still very fast. Follow the following steps.

✅ Prerequisites

Before you start, make sure you have Node.js installed on your computer. Without it, the connector won't be able to run.

<aside> ⚠️

Node.js is required.

If you see a yellow warning message in Claude after completing the setup, it means Node.js is not installed.

👉 Download it here: nodejs.org/en/download

Once installed, restart Claude and the warning will disappear.

</aside>


1. Open Claude Settings

Follow this path inside the Claude desktop app:


2. Edit the JSON Config File

This will open a file called claude_desktop_config.json. It will look something like this:

{
}

Place your cursor right after the first {, press Enter to create a new line, and paste the following block:

"mcpServers": {
  "piper-mcp": {
    "command": "npx",
    "args": [
      "-y",
      "mcp-remote@latest",
      "<https://mcp.piperai.com/mcp>",
      "--allow-http",
      "--transport",
      "http-only"
    ]
  }
}

The complete file should look like this:

{
  "mcpServers": {
    "piper-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote@latest",
        "<https://mcp.piperai.com/mcp>",
        "--allow-http",
        "--transport",
        "http-only"
      ]
    }
  }
}