A step-by-step guide to setting up Model Context Protocol (MCP) servers for Claude Desktop on Windows.
TODO:
- volta
- Install Node.js (v18.x or later)
- Download from: https://nodejs.org/
- Verify installation by opening PowerShell and running:
#!/bin/bash | |
echo "Starting Node.js environment discovery..." | |
# Create a log file | |
LOG_FILE="node-cleanup-$(date +%Y%m%d-%H%M%S).log" | |
exec 1> >(tee -a "$LOG_FILE") 2>&1 | |
# Discovery Phase | |
echo "=== Current Environment State ===" |
A step-by-step guide to setting up Model Context Protocol (MCP) servers for Claude Desktop on Windows.
TODO:
# /// script | |
# dependencies = [ | |
# "atproto" | |
# ] | |
# /// | |
from atproto import Client | |
import getpass | |
import time | |
# /// script | |
# dependencies = [ | |
# "SpeechRecognition", | |
# "mlx-whisper", | |
# "pyaudio", | |
# ] | |
# /// | |
import speech_recognition as sr | |
import numpy as np |
$ wget -e robots=off -r -np 'http://example.com/folder/'
import { basicAuth } from "https://esm.town/v/pomdtr/basicAuth?v=65"; | |
import Anthropic from "npm:@anthropic-ai/[email protected]"; | |
const anthropic = new Anthropic(); | |
async function suggestKeywords(question) { | |
const message = await anthropic.messages.create({ | |
max_tokens: 128, | |
model: "claude-3-5-sonnet-20240620", | |
tools: [{ |
human (Oct 30, 2024, 06:03 PM)
I want to ask the analysis stage llm (a very advanced multimodal LLM) to assess I want to ask the LLM to assess is the snippet politically left-leaning or right-leaning (on a spectrum of -1.0 to +1.0 where -1.0 is extremely left-leaning and +1.0 is extremely right leaning). Please help me to add this to the prompt. Here is the existing prompt that I want you to add it to:
import asyncio | |
import base64 | |
import json | |
import os | |
import pyaudio | |
from websockets.asyncio.client import connect | |
class SimpleGeminiVoice: | |
def __init__(self): |
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" |