mcp-cbs-cijfers-open-data
MCP server for working with CBS Cijfers Open Data
Overview
MCP CBS Cijfers Open Data is a Model Context Protocol (MCP) server designed to facilitate interaction with the CBS Open Data API, allowing AI tools to access and utilize statistical data.
To use the MCP server, install the program using Go, configure it to run as an MCP server, and utilize the provided tools to list datasets, retrieve metadata, and query statistical data.
- Implements a Model Context Protocol (MCP) server. - Tools for listing available datasets, retrieving dataset metadata, and querying statistical data.
- Accessing and analyzing public statistical data from CBS.
- Integrating CBS data into AI applications for enhanced data insights.
- Facilitating research and data analysis in various fields such as economics and social sciences.
Add to your AI client
Use these steps to connect mcp-cbs-cijfers-open-data in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-cbs-cijfers-open-data-dstotijn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-cbs-cijfers-open-data-dstotijn"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-cbs-cijfers-open-data-dstotijn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-cbs-cijfers-open-data-dstotijn"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-cbs-cijfers-open-data-dstotijn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-cbs-cijfers-open-data-dstotijn"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-cbs-cijfers-open-data-dstotijn": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-cbs-cijfers-open-data-dstotijn"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-cbs-cijfers-open-data-dstotijn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-cbs-cijfers-open-data-dstotijn"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-cbs-cijfers-open-data-dstotijn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-cbs-cijfers-open-data-dstotijn"
]
}
}
}FAQ
What programming language is used for this project?
The project is developed in Go.
Is there a license for this project?
Yes, it is licensed under the Apache-2.0 license.
How can I install the MCP server?
You can install it using Go with the command: `go install github.com/dstotijn/mcp-cbs-cijfers-open-data@latest`.