Quickstart Resources

April 7, 2025 · View on GitHub

A repository of servers and clients from the following Model Context Protocol tutorials:

Weather client

Claude Desktop add mcp build folder or copy index.js build to your mcp server folder

./weather-server-typescript/weather/build/index.js

claude_desktop_config.json

{
    "mcpServers": {
        "weather": {
            "command": "node",
            "args": [
                "C:\\PATH\\TO\\PARENT\\FOLDER\\weather\\build\\index.js"
            ]
        }
    }
}

Cursor

Or as a minimal example:

{
    "mcpServers": {
        "weather": {
            "command": "node",
            "args": [
                "C:\\PATH\\TO\\PARENT\\FOLDER\\weather\\build\\index.js"
            ]
        }
    }
}

Tools

  • get-alerts
  • get-forecast

Build

linux

npm run build

windows

npm run buildwin