Skip to content

Instantly share code, notes, and snippets.

View kimiyuki's full-sized avatar
🏠
Working from home

kimiyuki shirai kimiyuki

🏠
Working from home
View GitHub Profile

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 Command Prompt (CMD) and running:
      node --version
      npm --version
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@xhiroga
xhiroga / kotlinfest2019.md
Last active January 3, 2020 04:19
Kotlin Fest 2019 登壇資料まとめ
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vochicong
vochicong / circleci-gcpappengine.md
Last active September 2, 2018 01:54
CircleCI for GCP App Engine

CircleCIでGCP App Engineへデプロイ

目標

WebアプリをGitHubプライベートレポジトリから GCP App Engineへ手軽にCI/CDしたい。

Jenkins, TravisCI, CircleCIを比較した結果、今回CircleCIを試すことにしました。

  • Jenkinsが一番経験が多く、やりたいことをなんでもできるが、サーバの構築・運用が面倒だし、今回やりたいことは単純である。
  • TravisCIは使いやすいのだが、無料プランではGitHubプライベートレポジトリに対応してくれない。
  • CircleCIは初めてだが、UIがフレンドリだし、無料プランでもGitHubプレイベートレポジトリに対応している。
@Keiku
Keiku / Modeling_GermanCredit.r
Created March 17, 2017 08:38
データサイエンティスト養成読本 登竜門編 「11-3 Rで機械学習を試してみよう」のソースコード
# パッケージをインストールする
pkgs <- c("dplyr", "rpart", "rpart.plot", "rattle", "mlr", "evtree")
install.packages(pkgs, quiet = TRUE)
# パッケージを読み込む
library("dplyr")
library("rattle")
library("mlr")
library("evtree")
@pizzacat83
pizzacat83 / pyknp_memo.md
Last active February 14, 2023 11:19
pyKNPについてのメモ(自分用)
@vxgmichel
vxgmichel / aioudp.py
Last active March 16, 2026 20:09
High-level UDP endpoints for asyncio
"""Provide high-level UDP endpoints for asyncio.
Example:
async def main():
# Create a local UDP enpoint
local = await open_local_endpoint('localhost', 8888)
# Create a remote UDP enpoint, pointing to the first one
@mono0926
mono0926 / commit_message_example.md
Last active February 8, 2026 10:21
[転載] gitにおけるコミットログ/メッセージ例文集100
@voluntas
voluntas / webrtc.rst
Last active March 12, 2026 12:25
WebRTC コトハジメ