home / mcp / taiwan government open data mcp server

Taiwan Government Open Data MCP Server

Taiwan Government Open Data MCP Server

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "funtuan-mcp-server-taiwan-gov-data": {
      "url": "https://tw-gov-data-mcp.funtuan.workers.dev/sse"
    }
  }
}

You can query Taiwan government open data through an MCP (Model Context Protocol) server hosted on Cloudflare Workers. This MCP server lets you search datasets using AI-powered queries and retrieve full dataset information from the D1 database, giving you fast access to government open data with a simple, repeatable client workflow.

How to use

To use this MCP server, configure your MCP client to connect to the remote endpoint and then call the available tools through natural language prompts or explicit tool names. The primary action you will take is searching for datasets with your keywords and optional limits, then receiving a list of relevant datasets with their identifiers and detailed metadata.

Steps you can follow in a typical session: 1) Add the remote server to your MCP client configuration with the given URL. 2) Invoke the search_dataset tool with your query terms such as traffic accidents or health insurance. 3) If you need fewer or more results, specify max_results to tailor the response. 4) Review the returned dataset identifiers and use them to fetch full dataset information from the D1 database.

Example usage patterns you can try after configuring the server: - Find datasets related to traffic accidents - Retrieve open data on health insurance - Explore environmental monitoring datasets - Look up air quality datasets - Search for population statistics datasets

How to install

This MCP server is accessed over HTTP, so you do not install a local server. Instead, configure your MCP client to point to the remote endpoint and use the built-in tool to search datasets.

If you are setting up a Copilot-style MCP client, use the following configuration snippet to connect to the server.

{
  "mcpServers": {
    "tw_gov_data": {
      "url": "https://tw-gov-data-mcp.funtuan.workers.dev/sse",
      "type": "http",
      "args": []
    }
  }
}

Available tools

search_dataset

Search for relevant government open datasets using AI Search and retrieve full information from the D1 database. Parameters include query and optional max_results to limit results.