Skip to content

Instantly share code, notes, and snippets.

@evalstate
evalstate / mcp-install.ps1
Created December 12, 2024 10:22
Powershell Script to install a Node packaged MCP Server for Claude Desktop
param(
[Parameter(Mandatory=$true)]
[string]$PackageName
)
Write-Host "Starting installation process for $PackageName..."
# Check Claude Desktop folder
Write-Host "Checking Claude Desktop installation..."
$claudeFolder = Join-Path $env:APPDATA "Claude"