Server installation

Compatibility

The Wedolow MCP Server is compatible with:

  • Windows 10/11

  • Ubuntu 20.04/22.04/24.04

  • Debian 11

Prerequisites

First, install the following prerequisites:

  • Python 3.10 or newer

  • OS-specific prerequisites listed in tabs below

On Ubuntu 20.04/22.04 and Debian 11:

sudo apt install libspdlog1 libgrpc++1

On Ubuntu 24.04:

sudo apt install libspdlog1.12 libgrpc++1.51t64

Get the WedoLow MCP Server package

WedoLow will provide you a Python .whl file adapted to your system.

Install the WedoLow MCP Server

First, we advise you to use a Python virtual environment (generally recommended). In this guide, we will use a virtual environment .venv-wedolow created in the user workspace. To create the virtual environment and load it, and run:

python -m venv ~/.venv-wedolow
source ~/.venv-wedolow/bin/activate

Depending on your Python installation, you may need to explicitly use python3 instead of python command.

In the same terminal, install the WHL package (adapt the dame of the package):

pip install wedolow_mcp_server-X.Y.Z-py3-none-any.whl

Everything is now installed to use Wedolow MCP Server on your system. Go to Configuration section to set it up.

Last updated