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++1On Ubuntu 24.04:
sudo apt install libspdlog1.12 libgrpc++1.51t64Install Visual Studio C++ Redistributable 2017. Double-click on the downloaded file and follow the steps to install it.
Run the following command:
Get-ExecutionPolicyIf result is Restricted, then you must change the execution policy to RemoteSigned or Unrestricted (less safe). For this, open a Powershell terminal as an administrator.
You may do that by setting execution policy to your current user:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUserYou may also apply it to the whole local machine:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachineAfter running one of these commands, Get-ExecutionPolicy should return RemoteSigned.
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/activatepython -m venv "${env:USERPROFILE}\.venv-wedolow"
. "${env:USERPROFILE}\.venv-wedolow\Scripts\Activate.ps1"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.whlEverything is now installed to use Wedolow MCP Server on your system. Go to Configuration section to set it up.
Last updated
