DriveBC MCP Server
Provides real-time access to BC highway conditions, road closures, weather alerts, and traffic incidents through the Open511-DriveBC API with smart caching.
README
DriveBC MCP Server
An MCP (Model Context Protocol) server that provides AI assistants with access to real-time BC highway conditions, road closures, and weather alerts via the Open511-DriveBC API.
Features
- Highway Conditions: Get current conditions for specific BC highways
- Regional Overview: View all events within a BC region
- Road Closures: List active closures and restrictions
- Weather Alerts: Access weather-related incidents and warnings
- Smart Caching: 5-minute cache to reduce API load while keeping data fresh
- Type-Safe: Full TypeScript implementation with proper types
Installation
npm install
npm run build
Usage
Running the Server
npm start
The server runs on stdio transport and is designed to be used with MCP-compatible AI clients like Claude Desktop.
Development Mode
npm run dev
Configuration
Claude Desktop
Add the following to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"drivebc": {
"command": "node",
"args": ["/path/to/drivebc_mcp/build/index.js"]
}
}
}
After adding the configuration, restart Claude Desktop.
LM Studio
LM Studio supports MCP as of version 0.3.17. Add the following to your LM Studio MCP configuration:
macOS/Linux: ~/.lmstudio/mcp.json
Windows: %USERPROFILE%/.lmstudio/mcp.json
{
"mcpServers": {
"drivebc": {
"command": "node",
"args": ["/path/to/drivebc_mcp/build/index.js"]
}
}
}
After adding the configuration, restart LM Studio.
Available Tools
1. get_highway_conditions
Get current conditions, incidents, and closures for a specific BC highway.
Parameters:
highway(required): Highway number or name (e.g., "Highway 1", "99", "1")severity(optional): Filter by severity level (MINOR, MODERATE, MAJOR, UNKNOWN)includeScheduled(optional): Include scheduled construction (default: true)
Example:
Check Highway 1 conditions
2. get_regional_conditions
Get road conditions and events for a specific BC region.
Parameters:
region(required): BC region name (Lower Mainland, Vancouver Island, Thompson Okanagan, Kootenay Rockies, Cariboo, Northern BC)eventType(optional): Filter by event type (CONSTRUCTION, INCIDENT, WEATHER_CONDITION, ROAD_CONDITION, SPECIAL_EVENT)limit(optional): Maximum events to return (default: 50, max: 500)
Example:
Show road conditions in the Lower Mainland
3. get_road_closures
List all current road closures and major restrictions.
Parameters:
region(optional): Filter by BC regionhighway(optional): Filter by specific highwayseverityMinimum(optional): Minimum severity to include (MINOR, MODERATE, MAJOR; default: MODERATE)
Example:
Are there any road closures on Highway 1?
4. get_weather_alerts
Get active weather alerts and road condition warnings.
Parameters:
region(optional): Filter by BC regionalertType(optional): Type of alert (WEATHER_CONDITION, ROAD_CONDITION, INCIDENT)severityMinimum(optional): Minimum severity level (default: MINOR)
Example:
Show weather alerts for Northern BC
Data Source
This server uses the Open511-DriveBC API which provides:
- Real-time road events and incidents
- Road closures and construction updates
- Weather conditions and alerts
- Travel advisories
The API is public and requires no authentication.
Caching
The server implements a 5-minute cache to:
- Reduce load on the DriveBC API
- Improve response times
- Maintain reasonably fresh data
Cache hits and misses are logged to stderr for monitoring.
Project Structure
drivebc_mcp/
├── src/
│ ├── index.ts # MCP server entry point
│ ├── tools/
│ │ ├── highway-conditions.ts # Highway-specific queries
│ │ ├── regional-conditions.ts # Regional overview
│ │ ├── road-closures.ts # Closures and restrictions
│ │ └── weather-alerts.ts # Weather and incidents
│ ├── api/
│ │ ├── client.ts # API client with caching
│ │ ├── types.ts # TypeScript type definitions
│ │ └── constants.ts # BC regions and highways
│ ├── cache/
│ │ └── manager.ts # Cache implementation
│ └── utils/
│ └── formatters.ts # Response formatting
├── package.json
├── tsconfig.json
└── README.md
Development
Type Checking
npm run type-check
Building
npm run build
BC Regions
The server supports the following BC regions:
- Lower Mainland
- Vancouver Island
- Thompson Okanagan
- Kootenay Rockies
- Cariboo
- Northern BC
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。