Rabobank MCP Server Training
A demo MCP server for training purposes, providing mocked tools for exchange rates, mortgage calculations, and branch information.
README
Rabobank MCP-Server Training
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:
- Explore the existing tools in
src/index.tsand understand how they are registered. - Add a new tool – e.g.
get_interest_ratethat returns savings account interest rates. - Add a resource – expose a static JSON file with product information.
- Add a prompt – create a reusable prompt template for a customer service scenario.
- Connect the server to GitHub Copilot Chat or Claude for Desktop and test the tools interactively.
Useful links
- MCP Documentation
- TypeScript SDK
- MCP Inspector – GUI for testing MCP servers
- Claude for Desktop
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.