Skip to content

Instantly share code, notes, and snippets.

@weiyinerzui
weiyinerzui / enen_vocabulary.js
Created February 26, 2025 09:10
vocabulary 英英词典
class enen_Vocabulary {
constructor(options) {
this.name = "Vocabulary";
this.description = "Vocabulary.com 英英词典";
this.baseUrl = "https://www.vocabulary.com/dictionary/";
this.options = options;
this.maxexample = options?.maxexample || 2;
}
setOptions(options) {
@weiyinerzui
weiyinerzui / enen_Longman.js
Last active February 26, 2025 08:59
朗文英英词典
class enen_Longman {
constructor() {
this.name = "Longman";
this.description = "朗文英英词典";
this.baseUrl = "https://www.ldoceonline.com/dictionary/";
}
async findTerm(word) {
return new Promise(async (resolve, reject) => {
try {

Setting Up MCP Servers on Windows

A step-by-step guide to setting up Model Context Protocol (MCP) servers for Claude Desktop on Windows.

Prerequisites

  1. Install Node.js (v18.x or later)
    • Download from: https://nodejs.org/
    • Verify installation by opening PowerShell and running:
      node --version

npm --version