mcp-server-quickstart
Description
# mcp-server-quickstart [Zenn記事「MCPサーバー自作入門」](https://zenn.dev/zaki_yama/articles/mcp-server-getting-started)の実装例です。 ## 概要 National Weather Service (NWS) APIを使用して、米国の気象情報を取得するMCPサーバーです。 ## 機能 - 緯度経度を指定して天気予報を取得 - 米国内の地域のみサポート ## 使用方法 1. インストール ```bash npm install ``` 2. ビルド…
About
# mcp-server-quickstart [Zenn記事「MCPサーバー自作入門」](https://zenn.dev/zaki_yama/articles/mcp-server-getting-started)の実装例です。 ## 概要 National Weather Service (NWS) APIを使用して、米国の気象情報を取得するMCPサーバーです。 ## 機能 - 緯度経度を指定して天気予報を取得 - 米国内の地域のみサポート ## 使用方法 1. インストール ```bash npm install ``` 2. ビルド ```bash npm run build ``` 3. Cursorの設定…
Details
- Author
- sohta3
- Downloads
- 223
- Categories
- Other
Jump to
- Fetches weather forecasts by latitude/longitude
- Uses the official National Weather Service API
- Supports locations only within the United States
- Simple installation and build process with npm
- Ready‑to‑use Cursor integration via .cursor/mcp.json
- Licensed under ISC
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
mcp-server-quickstartCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install dependencies with npm install, then build the server with npm run build. To use it in Cursor, add the following configuration to .cursor/mcp.json:
{
"mcpServers": {
"weather-forecast": {
"command": "node",
"args": ["./build/index.js"]
}
}
}
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp-server-quickstart": {
"weather-forecast": {
"command": "node",
"args": [
"./build/index.js"
]
}
}
}
}
McpServers
{
"weather-forecast": {
"command": "node",
"args": [
"./build/index.js"
]
}
}
mcp-server-quickstart
Zenn記事「MCPサーバー自作入門」の実装例です。
概要
National Weather Service (NWS) APIを使用して、米国の気象情報を取得するMCPサーバーです。
機能
- 緯度経度を指定して天気予報を取得
- 米国内の地域のみサポート
使用方法
1. インストール
npm install
2. ビルド
npm run build
3. Cursorの設定
.cursor/mcp.jsonに以下の設定を追加:
{
"mcpServers": {
"weather-forecast": {
"command": "node",
"args": [
"./build/index.js"
]
}
}
}
ライセンス
ISC
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



