- Home
- MCP servers
- Taiwan Tender
Taiwan Tender
- other
0
GitHub Stars
other
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"jameslai-sparkofy-taiwan-tender-mcp": {
"command": "npx",
"args": [
"-y",
"github:jameslai-sparkofy/taiwan-tender-mcp"
]
}
}
}You can use the Taiwan Tender MCP server to query government tender information from the Taiwan Government Electronic Procurement Network API. It exposes six practical tools to search and retrieve tender data, enabling you to integrate official procurement data into your workflows and assistants.
How to use
You interact with this MCP server through an MCP client. You can search for tenders by keyword, by category code, list tenders by date or by agency, retrieve detailed information for a specific tender, and list available tender category codes. The server is designed to be quick to start via a local or online command so you can connect your tools, chat assistants, or automation scripts to authoritative government tender data.
How to install
Prerequisites: you need Node.js and npm or npx installed on your system. You can run the MCP server in two ways: using npx for a quick start, or by installing locally and running from build output.
{
"mcpServers": {
"taiwan_tender": {
"command": "npx",
"args": ["-y", "github:jameslai-sparkofy/taiwan-tender-mcp"]
}
}
}
Alternative local installation requires cloning the project, installing dependencies, and building the package. After building, reference the local build output in your configuration.
git clone https://github.com/jameslai-sparkofy/taiwan-tender-mcp.git
cd taiwan-tender-mcp
npm install
npm run build
{
"mcpServers": {
"taiwan_tender": {
"command": "node",
"args": ["/path/to/taiwan-tender-mcp/build/index.js"]
}
}
}
Claude Desktop configuration locations
Place your configuration in Claude Desktop’s settings file located at the following paths depending on your operating system.
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Available tools
search_tenders
Search tenders by keyword to find relevant notices and proposals.
search_by_category
Search tenders by category code to filter results by procurement area.
get_tender_detail
Retrieve detailed information for a specific tender, including requirements and timelines.
list_tenders_by_date
List tenders released on a specific date to track daily announcements.
list_tenders_by_unit
List tenders issued by a particular government agency or department.
list_categories
List available tender category codes and their names.