Skip to main content
Glama
gcaguilar

bizidashboard-mcp

by gcaguilar

bizidashboard-mcp

MCP server exposing BiziDashboard's historical and analytical data for the Zaragoza Bizi bike-share system as tools for LLM clients.

Unlike the official GBFS feed (which only exposes the current state of the system), BiziDashboard stores and analyzes history: rankings, occupancy patterns, mobility signals, alert history, and a station rebalancing diagnostic report. This server makes that analytical layer easy to query from Claude Desktop or any other MCP client.

Installation

Published on npm — no cloning or compiling required. Add it to your MCP client config (e.g. claude_desktop_config.json):

{
  "mcpServers": {
    "bizidashboard": {
      "command": "npx",
      "args": ["-y", "bizidashboard-mcp"]
    }
  }
}

From source

git clone https://github.com/gcaguilar/bizidashboard-mcp.git
cd bizidashboard-mcp
npm install
npm run build

Then point your MCP client at the built entrypoint:

{
  "mcpServers": {
    "bizidashboard": {
      "command": "node",
      "args": ["/absolute/path/to/bizidashboard-mcp/dist/index.js"]
    }
  }
}

Related MCP server: Spanish Public Data MCP

Configuration

Both variables are optional.

Variable

Default

Purpose

BIZI_API_BASE_URL

https://datosbizi.com

Base URL of the BiziDashboard instance to query. Override to point at another city's deployment or a local dev server.

BIZI_PUBLIC_API_KEY

(none)

X-Public-Api-Key sent on every request. Only required for elevated calls (CSV exports on get_alerts_history/get_rebalancing_report, or wide days/limit windows on those two tools). Everything else works anonymously.

Tools

Tool

Description

get_stations

Latest availability snapshot for every station.

get_rankings

Rank stations by turnover or availability.

get_alerts

Currently active low-bikes/low-anchors alerts.

get_alerts_history

Filterable/paginated alert history. format=csv or limit>500 needs BIZI_PUBLIC_API_KEY.

get_patterns

Weekday/weekend hourly occupancy pattern for one station.

get_heatmap

Occupancy heatmap cells for one station.

get_mobility

Hourly/daily mobility signals and transit impact.

get_history

Full historical daily demand data since first record.

get_rebalancing_report

Station diagnostics (A–F classification), risk predictions, and transfer recommendations. format=csv or days>30 needs BIZI_PUBLIC_API_KEY.

Every tool returns the API's JSON response as-is (or CSV text when format: "csv" is requested); nothing is summarized or transformed. Errors from the underlying API (bad params, rate limits, missing key) surface as MCP tool errors with the original status and message.

Development

npm run build       # compile TypeScript to dist/
npm run typecheck   # type-check without emitting
npm test            # build, then run integration tests against the live public API

Tests hit https://datosbizi.com for real — there are no mocks. A couple of tests are skipped automatically if BIZI_PUBLIC_API_KEY is not set, since they'd otherwise require a real elevated-access key to assert success.

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    MCP-compatible server that enables AI assistants to interact with Lightdash analytics data, providing tools to list and retrieve projects, spaces, charts, dashboards, and metrics through a standardized interface.
    13
    32
    26
    MIT
  • A
    license
    A
    quality
    F
    maintenance
    MCP server for querying Spanish government open data APIs including grants, legislation, company registry, statistics, and open data catalog. Enables LLMs to access Spanish public information on-the-fly.
    26
    5
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    MCP server to query public open data from Recife, Brazil using natural language. It exposes tools for schema exploration and SQL query generation via Gemini 2.5 Flash, backed by a local DuckDB database.
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server exposing the Backtest360 engine API as tools for AI agents.

  • MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.

  • Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/gcaguilar/bizidashboard-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server