Install
$ agentstack add mcp-dstotijn-mcp-cbs-cijfers-open-data ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
mcp-cbs-cijfers-open-data
This project provides a Model Context Protocol (MCP) server for the CBS Open Data API. It allows AI tools to interact with the CBS Open Data through MCP tools.
Features
- Implements a Model Context Protocol (MCP)
server
- Provides tools for interacting with the CBS Open Data:
- List available datasets and catalogs
- Query dataset metadata and dimensions
- Retrieve statistical data with filtering options
- Explore dimension values
Tools
This MCP server provides the following tools for AI assistants to interact with the CBS Open Data API:
get_catalogs
Retrieves all available CBS data catalogs.
Parameters:
- None
query_datasets
Lists available datasets from the CBS Open Data API with advanced filtering, sorting, and pagination options.
Parameters:
catalog(required): Catalog identifier (use "CBS")select(optional): OData $select parameter to choose specific fieldsfilter(optional): OData $filter parameter for filtering resultsorderby(optional): OData $orderby parameter for sorting resultstop(optional): OData $top parameter for limiting resultsskip(optional): OData $skip parameter for paginationcount(optional): OData $count parameter to include count in responsesearch(optional): OData $search parameter for free-text searchexpand(optional): OData $expand parameter to include related entities
get_dimensions
Retrieves all dimensions for a specific dataset.
Parameters:
catalog(required): Catalog identifierdataset(required): Dataset identifier
get_dimension_values
Retrieves all values for a specific dimension with filtering and sorting options.
Parameters:
catalog(required): Catalog identifierdataset(required): Dataset identifierdimension(required): Dimension identifierselect(optional): OData $select parameter to choose specific fieldsfilter(optional): Additional OData $filter parameter for filtering resultsorderby(optional): OData $orderby parameter for sorting resultstop(optional): OData $top parameter for limiting results
get_observations
Retrieves observations from a specific dataset with optional filters.
Parameters:
catalog(required): Catalog identifierdataset(required): Dataset identifierfilters(optional): Filters as key-value pairslimit(optional): Maximum number of observations to return
query_observations
Queries observations with advanced OData query options to filter, sort, and shape results.
Parameters:
catalog(required): Catalog identifierdataset(required): Dataset identifierselect(optional): OData $select parameter to choose specific fieldsfilter(optional): OData $filter parameter for filtering resultsorderby(optional): OData $orderby parameter for sorting resultstop(optional): OData $top parameter for limiting resultsskip(optional): OData $skip parameter for paginationcount(optional): OData $count parameter to include count in responsesearch(optional): OData $search parameter for free-text searchexpand(optional): OData $expand parameter to include related entities
get_metadata
Retrieves the OData service metadata document for the CBS API.
Parameters:
- None
Requirements
Installation
Configuration for common MCP hosts (Claude Desktop, Cursor):
{
"mcpServers": {
"cbs-cijfers-open-data": {
"command": "go",
"args": ["run", "github.com/dstotijn/mcp-cbs-cijfers-open-data@latest"]
}
}
}
Alternatively, you can manually install the program (given you have Go installed ):
go install github.com/dstotijn/mcp-cbs-cijfers-open-data@latest
Usage
$ mcp-cbs-cijfers-open-data --help
Usage of mcp-cbs-cijfers-open-data:
-http string
HTTP listen address for JSON-RPC over HTTP (default ":8080")
-sse
Enable SSE transport
-stdio
Enable stdio transport (default true)
Typically, your MCP host will run the program and start the MCP server, and you don't need to manually do this. But if you want to run the MCP server manually, for instance because you want to serve over HTTP (using SSE):
Given you have your PATH environment configured to include the path named by $GOBIN (or $GOPATH/bin $HOME/go/bin if $GOBIN is not set), you can then run:
mcp-cbs-cijfers-open-data --stdio=false --sse
Which will output startup logs with the SSE transport URL:
CBS API MCP server started, using transports: [sse]
SSE transport endpoint: http://localhost:8080
© 2025 David Stotijn — This project is licensed under the [Apache License 2.0](/LICENSE)
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: dstotijn
- Source: dstotijn/mcp-cbs-cijfers-open-data
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.