Quickstart Resources
April 7, 2025 · View on GitHub
A repository of servers and clients from the following Model Context Protocol tutorials:
- Quickstart – a simple MCP weather server
- Building MCP clients – an LLM-powered chatbot MCP client
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
- select Agent^ in chat box, then click on the "..." on the top right
- click +Add new global MCP server
- setup json file accordingly (https://docs.cursor.com/context/model-context-protocol):
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