1. Conduid
  2. Developer Tools
  3. Husqvarna Automower
MCP server · Developer Tools

Husqvarna Automower

MCP Server for huqsvarna automower

Unclaimed last commit a year ago devtools
41Fair

Scored 4 months ago · breakdown

About Husqvarna Automower

Husqvarna Automower is an MCP server published by jeanlaurent in the Developer Tools category: mCP Server for huqsvarna automower. It has been installed 0 times through Conduid.

The repository has 1 stars and 0 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx mcp-husqvarna-automower

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Husqvarna Automower

Powered by Claude · Grounded in docs

I know everything about Husqvarna Automower. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Husqvarna Automower MCP Server

A Model Context Protocol (MCP) server that provides access to Husqvarna connected automower API, allowing AI assistants to query information about your automower status.

This calls the husqvarna remote API. You need to create credentials at https://developer.husqvarnagroup.cloud

Features

The Husqvarna Automowers Status tool returns a full snapshot of every mower connected to your Husqvarna account. Concrete data returned per mower includes:

  • Status & activity: current mode (e.g. MAIN_AREA), activity (e.g. MOWING, CHARGING, PARKED_IN_CS), state (e.g. IN_OPERATION), and any active error codes
  • Battery: charge percentage (e.g. 87%)
  • Schedule: next planned start timestamp, calendar tasks with days of week and start/duration times
  • Last known GPS position: latitude and longitude coordinates
  • Statistics: total cutting time, total drive distance, number of charging cycles, blade usage time
  • Settings: cutting height, headlight mode
  • System info: mower name, model, serial number

Prerequisites

You need a ClientID and ClientSecret generated through the Husqvarna developer portal

  1. Go to https://developer.husqvarnagroup.cloud
  2. Sign up/sign in
  3. Go to My Applications at https://developer.husqvarnagroup.cloud/applications
  4. Click "Create App", enter a name, leave localhost, click create
  5. You will receive an Application Key (ClientID) and Application Secret (ClientSecret)

Available Tools

Husqvarna Automowers Status

Get detailed information about all automowers.

Parameters:

None

With Docker

Running the server in a Docker container is the recommended approach for Claude Desktop: it keeps your Husqvarna credentials isolated from the AI model process, and Claude calls it over stdio without any network setup required.

Make sure Docker Desktop is running, then build the image:

docker build -t husqvarna-automower-mcp .

Then add it to your Claude Desktop (or any MCP client) configuration:

{
  "mcpServers": {
    "automower": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "HUSQVARNA_CLIENT_ID",
        "-e",
        "HUSQVARNA_CLIENT_SECRET",
        "husqvarna-automower-mcp"
      ],
      "env": {
        "HUSQVARNA_CLIENT_ID": "YourClientID",
        "HUSQVARNA_CLIENT_SECRET": "YourClientSecret"
      }
    }
  }
}

With Claude Code

Register the server with the claude CLI so it's available in all Claude Code sessions:

claude mcp add husqvarna-automower -- docker run -i --rm \
  -e HUSQVARNA_CLIENT_ID=YourClientID \
  -e HUSQVARNA_CLIENT_SECRET=YourClientSecret \
  husqvarna-automower-mcp

Running in Streamable HTTP mode

To expose the server as a persistent HTTP endpoint (useful for multi-agent stacks, Home Assistant, or any client that connects over HTTP rather than spawning a subprocess):

docker run --rm \
  -e TRANSPORT=http \
  -e PORT=8080 \
  -e HUSQVARNA_CLIENT_ID=YourClientID \
  -e HUSQVARNA_CLIENT_SECRET=YourClientSecret \
  -p 8080:8080 \
  husqvarna-automower-mcp

The server will be available at http://localhost:8080/mcp.

Once the container is running, add this to your Claude Desktop claude_desktop_config.json:

{
  "mcpServers": {
    "automower": {
      "type": "streamable-http",
      "url": "http://localhost:8080/mcp"
    }
  }
}

With Docker Compose (Streamable HTTP + MCP Inspector)

Streamable HTTP mode exposes the server as a persistent HTTP endpoint rather than a subprocess. This is suitable for multi-agent stacks, Home Assistant integrations, and any MCP client that can't launch a subprocess directly.

This Docker Compose setup runs the automower server in HTTP mode alongside the MCP Inspector for easy testing.

  1. Build the container image:
docker compose build
  1. Create a .env file with your credentials:
cat > .env << 'EOF'
HUSQVARNA_CLIENT_ID=YourClientID
HUSQVARNA_CLIENT_SECRET=YourClientSecret
EOF

⚠️ Do not commit .env — it contains secrets. It is already listed in .gitignore.

  1. Start both services:
docker compose up
  1. Open the Inspector UI at http://localhost:6274 — it is pre-filled to connect to the automower service.

    Note: DANGEROUSLY_OMIT_AUTH=true and ALLOWED_ORIGINS are required for the MCP Inspector to work correctly when run inside Docker. HOST=0.0.0.0 binds to all interfaces (needed for Docker port mapping), but causes the Inspector's proxy token URL to use 0.0.0.0 instead of localhost. Disabling auth avoids this mismatch. Always open the Inspector at http://localhost:6274, never http://0.0.0.0:6274.

  2. Click Connect to start the session.

  3. Use the Husqvarna Automowers Status tool to query your mowers.

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Husqvarna Automower

How do I install Husqvarna Automower?

Run npx mcp-husqvarna-automower, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Husqvarna Automower safe to use with an AI agent?

Its trust score is 41 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Husqvarna Automower still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.