Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Rabobank Server Training

БесплатноНе проверен

A demo MCP server for training purposes, providing mocked tools for exchange rates, mortgage calculations, and branch information.

GitHubEmbed

Описание

A demo MCP server for training purposes, providing mocked tools for exchange rates, mortgage calculations, and branch information.

README

Welcome to the Rabobank MCP-Server Training repository. This project contains a fully functional demo Model Context Protocol (MCP) server built with TypeScript that you can use as a starting point during the training.


What is MCP?

The Model Context Protocol is an open standard that allows AI assistants (like GitHub Copilot and Claude) to call external tools and data sources in a structured, secure way. An MCP server exposes tools, resources, and prompts that any MCP-compatible client can discover and invoke.

┌──────────────┐   MCP (stdio/SSE)   ┌─────────────────────┐
│  AI Client   │ ◄──────────────────► │  Demo MCP Server    │
│ (Copilot /   │                      │  (this repository)  │
│  Claude …)   │                      └─────────────────────┘
└──────────────┘

Demo tools included

Tool Description
get_exchange_rate Returns a (mocked) EUR exchange rate for a given currency code
calculate_mortgage Calculates the monthly mortgage payment given principal, annual rate and term
get_branch_info Returns contact details for a mock Rabobank branch

Prerequisites

  • Node.js v18 or higher
  • npm (comes with Node.js)

Quick start

# 1. Clone the repository
git clone https://github.com/RemseyMailjard/rabobank-mcp-server-training.git
cd rabobank-mcp-server-training

# 2. Install dependencies
npm install

# 3. Build
npm run build

# 4. Run (stdio)
node build/index.js

Use with VS Code (GitHub Copilot)

The .vscode/mcp.json file is already configured. Open the project in VS Code and Copilot will automatically discover the server.

Use with Claude for Desktop

Add the following entry to your claude_desktop_config.json:

{
  "mcpServers": {
    "rabobank-demo": {
      "command": "node",
      "args": ["C:\\path\\to\\rabobank-mcp-server-training\\build\\index.js"]
    }
  }
}

Project structure

rabobank-mcp-server-training/
├── src/
│   └── index.ts          # MCP server implementation
├── build/                # Compiled output (after npm run build)
├── .vscode/
│   └── mcp.json          # VS Code MCP configuration
├── .github/
│   └── copilot-instructions.md
├── package.json
├── tsconfig.json
└── README.md

Exercises

During the training you will:

  1. Explore the existing tools in src/index.ts and understand how they are registered.
  2. Add a new tool – e.g. get_interest_rate that returns savings account interest rates.
  3. Add a resource – expose a static JSON file with product information.
  4. Add a prompt – create a reusable prompt template for a customer service scenario.
  5. Connect the server to GitHub Copilot Chat or Claude for Desktop and test the tools interactively.

Useful links

from github.com/RemseyMailjard/rabobank-mcp-server-training

Установка Rabobank Server Training

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/RemseyMailjard/rabobank-mcp-server-training

FAQ

Rabobank Server Training MCP бесплатный?

Да, Rabobank Server Training MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Rabobank Server Training?

Нет, Rabobank Server Training работает без API-ключей и переменных окружения.

Rabobank Server Training — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Rabobank Server Training в Claude Desktop, Claude Code или Cursor?

Открой Rabobank Server Training на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Rabobank Server Training with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development