Smithery CLI Installation (Windows)

This guide will walk you through installing the Smithery CLI on Windows using Scoop.

Installation Steps

Step 1: Install Scoop

For more information about Scoop, visit the official Scoop GitHub repository.
In Windows PowerShell:

powershell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
powershell
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

Step 2: Add Scoop to your PATH

powershell
$oldPath = [Environment]::GetEnvironmentVariable('Path', 'User')
powershell
$newPath = "$oldPath;$env:USERPROFILE\scoop\shims"
powershell
[Environment]::SetEnvironmentVariable('Path', $newPath, 'User')

Step 3: Restart Powershell

Step 4: Check Scoop installation

powershell
scoop --version

Step 5: Install Smithery

powershell
scoop bucket add smithery https://github.com/smithery-ai/scoop-smithery
powershell
scoop install smithery

Step 6: Check smithery installation

powershell
smithery --help

Step 7: Install and Run Server

Install the server:

powershell
smithery install @smithery-ai/server-sequential-thinking --client claude

Run the server in cursor MCP settings:

powershell
smithery run @smithery-ai/server-sequential-thinking --config "{}"

If the above command doesn't work, try using the full Scoop shim path:

powershell
C:\Users\YourUsername\scoop\shims\smithery.exe run @smithery-ai/server-sequential-thinking --config "{}"

Note: Replace YourUsername with your actual Windows username.

Enjoy!