kanpou-mcp

kanpou-mcp

MCP server for searching Japanese government procurement notices via the Kanpou API. Enables LLMs to search by date, keyword, or detailed criteria.

Category
Visit Server

README

官報API MCPサーバー

官公需情報ポータルサイトAPI(官報API)をLLMやAIエージェントがツールとして使用できるようにするMCP(Model Context Protocol)サーバーです。

機能

このMCPサーバーは以下のツールを提供します:

  1. search_procurements - 詳細な検索条件で入札情報を検索
  2. get_procurements_by_date - 指定した日付の入札情報を取得
  3. search_by_keyword - キーワードで入札情報を検索

インストール

cd mcp-kanpo-api
npm install
npm run build

使用方法

MCPクライアントでの設定

MCPクライアント(例: Claude Desktop、Cursor等)の設定ファイルに以下を追加してください:

Claude Desktopの場合 (~/Library/Application Support/Claude/claude_desktop_config.json):

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

Cursorの場合 (.cursor/mcp.json または設定ファイル):

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

開発モード

開発中は tsx を使用して直接実行できます:

npm run dev          # stdio版
npm run dev:http     # HTTP版

HTTPサーバー版の使用方法

n8nなどのHTTPクライアントから使用する場合は、HTTPサーバー版を起動します:

npm run start:http

デフォルトで http://localhost:3000 で起動します。ポート番号は環境変数 PORT で変更できます:

PORT=8080 npm run start:http

利用可能なエンドポイント

  • GET / - ヘルスチェック
  • GET /api/tools - 利用可能なツール一覧
  • POST /api/tools/search_procurements - 入札情報検索
  • POST /api/tools/get_procurements_by_date - 日付指定取得
  • POST /api/tools/search_by_keyword - キーワード検索

使用例

# 日付指定で取得
curl -X POST http://localhost:3000/api/tools/get_procurements_by_date \
  -H "Content-Type: application/json" \
  -d '{"date": "2025-11-07", "count": 50}'

# キーワード検索
curl -X POST http://localhost:3000/api/tools/search_by_keyword \
  -H "Content-Type: application/json" \
  -d '{"keyword": "情報システム", "count": 20}'

ngrokでの公開

ngrokを使用してHTTPサーバーを外部公開できます:

# 1. HTTPサーバーを起動
npm run start:http

# 2. 別のターミナルでngrokを起動
ngrok http 3000

# 3. ngrokが提供するURL(例: https://xxxx-xxxx-xxxx.ngrok-free.app)をn8nで使用

自然言語での使用方法

このMCPサーバーは、LLM/AIエージェント(Claude、GPT-4等)が自然言語の命令を理解して、適切なツールを自動的に呼び出すことを想定しています。

使用例:

  • 「2025年11月7日の入札情報を取得して」→ get_procurements_by_date ツールが自動的に呼び出されます
  • 「情報システムというキーワードで検索して」→ search_by_keyword ツールが自動的に呼び出されます
  • 「東京都の物品カテゴリーの入札情報を検索して」→ search_procurements ツールが自動的に呼び出されます
  • 「11月の役務カテゴリーの入札情報を検索して」→ search_procurements ツールが自動的に呼び出されます

LLM/AIエージェントは、あなたの自然言語の命令を理解し、適切なツールとパラメータを選択して実行します。

利用可能なツール

1. search_procurements

詳細な検索条件で入札情報を検索します。

パラメータ:

  • query (string, 任意): 検索文字列(AND、OR、NOT演算子使用可能)
  • projectName (string, 任意): 件名で絞り込み
  • organizationName (string, 任意): 機関名で絞り込み
  • lgCode (string, 任意): 都道府県コード(JIS X0401準拠)
  • category (number, 任意): カテゴリー(1=物品, 2=工事, 3=役務)
  • procedureType (number, 任意): 公示種別(1=一般競争入札, 2=簡易公募型競争入札, 3=簡易公募型指名競争入札)
  • certification (string, 任意): 入札資格(A, B, C, D)
  • cftIssueDate (string, 任意): 公告日(形式: YYYY-MM-DD/ または /YYYY-MM-DD または YYYY-MM-DD/YYYY-MM-DD)
  • tenderSubmissionDeadline (string, 任意): 入札開始日
  • openingTendersEvent (string, 任意): 開札日
  • periodEndTime (string, 任意): 納入期限日
  • count (number, 任意): 返却件数(デフォルト: 100、最大: 1000)

注意: queryprojectNameorganizationNamelgCodeのいずれか一つを指定することを推奨します。すべてが指定されない場合は、デフォルトでQuery="*"が使用されます。

2. get_procurements_by_date

指定した日付の入札情報を取得します。内部ではquery="入札"cftIssueDateを指定して検索を実行します。

パラメータ:

  • date (string, 必須): 日付(形式: YYYY-MM-DD)
  • count (number, 任意): 返却件数(デフォルト: 100、最大: 1000)

例:

{
  "date": "2025-11-07",
  "count": 50
}

3. search_by_keyword

キーワードで入札情報を検索します。

パラメータ:

  • keyword (string, 必須): 検索キーワード
  • count (number, 任意): 返却件数(デフォルト: 100、最大: 1000)

例:

{
  "keyword": "情報システム",
  "count": 20
}

レスポンス形式

MCP版(stdio)

すべてのツールは以下の形式でレスポンスを返します:

{
  "searchHits": 262,
  "results": [
    {
      "resultId": 1,
      "key": "...",
      "externalDocumentURI": "https://...",
      "projectName": "第2069号小中学校児童生徒用机・いす",
      "date": "2025-11-07T19:08:01+09:00",
      "fileType": "pdf",
      "fileSize": 134411,
      "lgCode": "19",
      "prefectureName": "山梨県",
      "cityCode": "192015",
      "cityName": "甲府市",
      "organizationName": "山梨県甲府市",
      "cftIssueDate": "2025-11-07T00:00:00+09:00",
      "category": "物品",
      "procedureType": "一般競争入札",
      "projectDescription": "...",
      "attachments": [
        {
          "name": "入札説明書(PDF:132KB)",
          "uri": "https://..."
        }
      ]
    }
  ]
}

HTTP版

HTTPサーバー版は以下の形式でレスポンスを返します:

{
  "success": true,
  "data": {
    "searchHits": 262,
    "results": [
      {
        "resultId": 1,
        "projectName": "第2069号小中学校児童生徒用机・いす",
        "organizationName": "山梨県甲府市",
        "cftIssueDate": "2025-11-07T00:00:00+09:00",
        "category": "物品",
        "procedureType": "一般競争入札",
        ...
      }
    ]
  }
}

エラーの場合:

{
  "success": false,
  "error": "エラーメッセージ"
}

注意事項

  • このAPIは官公需情報ポータルサイトのAPIを使用しています
  • 登録・認証は不要で誰でも利用可能です
  • 利用規約を遵守してください
  • APIのレスポンスはXML形式ですが、このMCPサーバーはJSON形式に変換して返します

参考資料

ライセンス

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured