ZEN University Syllabus
An MCP server to access and utilize content from the ZEN University syllabus.
ZEN大学シラバスMCPサーバー実装
ZEN大学シラバスのコンテンツを利用できるようMCPを実装したもの。
使い方
Node.jsをインストールする。 Node.jsのバージョンは20以上を使用すること。
このリポジトリをクローンするか、ZIPでダウンロードして展開する。 コンソールで開き、以下のコマンドを実行する。
npm install
npx tsc
でビルド。Macはコンソールで実行権限をつける。 chmod 755 build/index.js
Claude Desktopでの設定
Claude Desktopをインストールする。 VSCodeのエディタがインストール前提だが、
code $env:AppData\Claude\claude_desktop_config.json
で設定ファイルを開く。Macは、
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
以下のように書き換えて設定。
{
"mcpServers": {
"get-subjects": {
"command": "node",
"args": [
"C:\\Users\\sifue\\workspace\\zen-syllabus-mcp\\build\\index.js"
]
}
}
}
build/index.jsのパスは適宜変更すること。
Macでは、
{
"mcpServers": {
"get-subjects": {
"command": "node",
"args": [
"/Users/sifue/workspace/zen-syllabus-mcp/build/index.js"
]
}
}
}
nvmなどのNode.jsのバージョン管理システムを利用している場合以下のようにnodeを指定する。
{
"mcpServers": {
"get-subjects": {
"command": "/Users/soichiro_yoshimura/.nvm/versions/node/v22.14.0/bin/node",
"args": [
"/Users/soichiro_yoshimura/workspace/zen-syllabus-mcp/build/index.js"
]
}
}
}
このようになる。build/index.jsのパスは適宜変更すること。
設定後はClaude Desktopを再起動。
「ZEN大学のシラバスMCPを利用して、フロントエンドエンジニアになるためのオススメの科目をあげてください」
で検証。

このようになる。履修要件を設定すれば細かな履修相談も可能。
VSCodeの設定
【未検証】いずれGitHub Copilot でAIエージェントが利用できるようなると利用できるらしい(現在はプレビュー版のみ)。 mcpで設定を検索して以下をsetting.jsonに設定。パスは適宜変更すること。jsonのweatherの上に起動ボタンが現れるので起動しておく。
{
"mcpServers": {
"get-subjects": {
"command": "node",
"args": [
"C:\\Users\\sifue\\workspace\\zen-syllabus-mcp\\build\\index.js"
]
}
}
}
設定後はGitHub Copilotで
「ZEN大学のシラバスMCPを利用して、フロントエンドエンジニアになるためのオススメの科目をあげてください」
で検証。履修要件を設定すれば細かな履修相談も可能。
サーバー実装時の動作確認
詳しくは、TypeScript SDKのClientの実装を参照。
node build/index.js
でサーバーを起動。
node .\build\client.js
でクライアントを起動して実行。
クライアントは検証したいコードに合わせて書き換え、その後、
npx tsc
でビルドして再度クライアントを実行する。
参考
Related Servers
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
cratesio-mcp
MCP server for querying crates.io - the Rust package registry
Skills-ContextManager
Don’t pollute your AI agent’s context with 1,000 skills. Use Skills-ContextManager, a self-hosted web UI for managing AI skills and workflows by providing skills to an AI agent via MCP only when needed. Simply add skills to your library and enable or disable them with a toggle. Choose whether a skill is always loaded into context or dynamically activated when the AI agent determines it’s needed.
SCMCP
A natural language interface for single-cell RNA sequencing (scRNA-Seq) analysis, supporting various modules from IO to enrichment.
MCP Server Creator
A meta-server for dynamically generating MCP server configurations and Python code.
Contrast MCP Server
Remediate vulnerabilities found by Contrast products using LLM and Coding Agent capabilities.
ITerm MCP Server
An MCP server for iTerm2, enabling AI assistants to interact with the terminal.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers, without authentication.
GameCode MCP2
A Model Context Protocol (MCP) server for tool integration, configured using a tools.yaml file.
공공 API 연동 MCP 샘플
Integrates the Korea Meteorological Administration's public weather API to provide climate data.
MCP Server with Google OAuth & Analytics
A remote MCP server with built-in Google OAuth authentication and analytics tracking.