Server installation
Compatibility
The Wedolow MCP Server is compatible with:
Windows 10/11
Ubuntu 20.04+
Debian 11+
Fedora 32+
OpenSUSE 15.3+
Prerequisites
Install Python 3.10 or higher.
Install Python 3.10 or higher.
Install 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.
Installation methods
Using VSCode Extension
In VSCode, install WedoLow extension from the store.

Then, follow the instructions on the welcome page that shows up.

Manually
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:
In the same terminal, install the WHL package (adapt the dame of the package):
Replace <your_token> with the token which was sent to you to access the Beta.
If you previously installed WedoLow MCP Server from a .whl file (deprecated), please completely remove your virtual environment first, or run
Everything is now installed to use Wedolow MCP Server on your system. Go to Configuration section to set it up.
Last updated
