Canada Travel Advisory MCP Server
Enables querying Government of Canada travel advisories for 230 destinations, including searching, comparing, and filtering by risk level, with support for English and French.
README
Canada Travel Advisory MCP Server
An MCP server for Government of Canada travel advisories, backed by the Global Affairs Canada open data index of 230 destinations.
Lightweight by design: a single index.js, one dependency (@modelcontextprotocol/sdk),
no build step, no TypeScript compile, no HTTP library.
Install
npm install
Requires Node.js 18+ (uses the built-in fetch).
Setup
No API key is needed — the dataset is public and unauthenticated. All clients below run the same
stdio command: node <path-to>/index.js.
Substitute your own absolute path if the project lives elsewhere.
Claude Code
claude mcp add canada-travel-advisory -- node E:/Claude/mcp-servers/canada-travel-advisory/index.js
Add --scope user to make it available across all your projects instead of just the current one.
Claude Desktop
In claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"canada-travel-advisory": {
"command": "node",
"args": ["E:/Claude/mcp-servers/canada-travel-advisory/index.js"]
}
}
}
Restart Claude Desktop after saving.
Codex CLI
codex mcp add canada-travel-advisory -- node E:/Claude/mcp-servers/canada-travel-advisory/index.js
Or edit ~/.codex/config.toml directly (use .codex/config.toml in the project root to scope it
to one trusted project):
[mcp_servers.canada-travel-advisory]
command = "node"
args = ["E:/Claude/mcp-servers/canada-travel-advisory/index.js"]
Verify with codex mcp list.
Cursor
Create .cursor/mcp.json in the project root, or ~/.cursor/mcp.json to enable it globally:
{
"mcpServers": {
"canada-travel-advisory": {
"command": "node",
"args": ["E:/Claude/mcp-servers/canada-travel-advisory/index.js"]
}
}
}
The server then appears under Settings → MCP, where it must be toggled on.
Windows path note
The forward slashes above work fine on Windows. If you prefer backslashes in the JSON configs,
escape them: "E:\\Claude\\mcp-servers\\canada-travel-advisory\\index.js".
Tools
| Tool | Purpose |
|---|---|
get_travel_advisory |
Advisory for one destination. Accepts a name (English or French), ISO code (JP), or slug (costa-rica). Ambiguous input returns candidates. |
list_travel_advisories |
Filter and browse all destinations by risk_level, min_risk_level, has_regional_advisory; sort by name / risk / updated; paged via limit + offset. |
get_recent_updates |
Advisories changed most recently, newest first. Filter by days and by update_type. |
search_countries |
Partial-match search across names, ISO codes, and slugs. |
compare_advisories |
Compare several destinations at once, ranked highest risk first. |
get_advisory_statistics |
Dataset overview: counts per risk level, regional-advisory count, change-type breakdown, freshness. |
All tools accept language ("en" default, or "fr"), which switches names, advisory text, and
the destination link between travel.gc.ca and voyage.gc.ca.
Risk levels
| Level | Meaning |
|---|---|
| 0 | Exercise normal security precautions |
| 1 | Exercise a high degree of caution |
| 2 | Avoid non-essential travel |
| 3 | Avoid all travel |
min_risk_level: 2 gives every destination Canada advises against travelling to. Filters also
accept the label text (e.g. risk_level: "avoid all travel").
Example questions this answers
- "What's the travel advisory for Peru?"
- "Which countries should I avoid all travel to right now?"
- "What advisories changed in the last week?"
- "Compare Japan, Mali, and France for a trip."
- "How many destinations have regional advisories?"
Data source and behaviour notes
Source: https://data.international.gc.ca/travel-voyage/index-alpha-eng.json
- One endpoint is fetched, not two. The published
index-updated.jsonis byte-identical toindex-alpha-eng.json(verified: same MD5, same alphabetical key order) and is not actually sorted by recency.get_recent_updatestherefore sorts ondate-published.timestamplocally, which is reliable regardless of what order the upstream file happens to be in. - One fetch serves both languages. Despite the
-engsuffix, every record embeds bothengandfrablocks; the-frafile differs only in key order. - Caching: responses are cached in memory for 60 minutes (the dataset regenerates about
hourly), refreshed with conditional
If-None-Match/If-Modified-Sincerequests. If a refresh fails, the last good data is served withstale: truerather than erroring. - Summary data only. The dataset carries risk level, advisory text, update date and change
summary. Full advisory detail (safety and security, entry requirements, health, regional
breakdowns) exists only as HTML, so every result includes the destination
urlto read it.
Every response also carries data_generated (upstream generation time) and a source attribution
line, so answers can be dated.
Licence
MIT. Advisory data © Government of Canada, used under the Open Government Licence – Canada.
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。