Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"jgrants": {
"args": [
"jgrants-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
jgrants-mcp は、jGrants(デジタル庁が運営する補助金電子申請システム)の公開 API をラップした MCP サーバーです。LLM から MCP を経由して日本の補助金情報に簡単にアクセスできます。
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'jgrants-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked jgrants-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / data
Query and manage PostgreSQL databases directly from AI assistants
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP Security Weekly
Get CVE alerts and security updates for Jgrants Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
日本の補助金情報を検索するための MCP (Model Context Protocol) サーバー
jgrants-mcp は、jGrants(デジタル庁が運営する補助金電子申請システム)の公開 API をラップした MCP サーバーです。LLM から MCP を経由して日本の補助金情報に簡単にアクセスできます。
以下の 3 つのツールを提供します。すべてのツールは structuredContent フィールドで構造化データを返すため、LLM が効率的に処理できます。
list_subsidies指定したキーワードで公募中の補助金一覧を取得します。
パラメータ:
keyword (文字列, オプション): 検索キーワード(デフォルト: "補助金")返却データ:
get_subsidy_detail補助金の詳細情報を取得します。添付ファイルは軽量なメタデータ(ファイル名、サイズ、インデックス)のみを返し、Base64 データは含まれません。
パラメータ:
subsidy_id (文字列, 必須): 補助金の ID(list_subsidies で取得した id を指定)返却データ:
AttachmentGroup:
count: 添付ファイル数hasAttachments: 添付の有無attachments: ファイル情報の配列
index: ダウンロード時に指定するインデックスname: ファイル名sizeBytes: ファイルサイズ(バイト)download_attachment指定した補助金の添付ファイルをダウンロードします。Base64 エンコードされたファイルデータとメタデータを返します。
パラメータ:
subsidy_id (文字列, 必須): 補助金の IDcategory (文字列, 必須): 添付文書のカテゴリ
application_guidelines: 公募要領outline_of_grant: 交付要綱application_form: 申請様式index (整数, 必須): 添付文書のインデックス(get_subsidy_detail の attachments[n].index を指定)返却データ:
file_name: ファイル名data: Base64 エンコードされたファイルデータdata_size_bytes: ファイルサイズencoding: エンコード形式(常に "base64")npm install -g jgrants-mcp
npx jgrants-mcp
git clone https://github.com/tachibanayu24/jgrants-mcp.git
cd jgrants-mcp
npm install
npm run build
Claude Desktop の設定ファイル(~/Library/Application Support/Claude/claude_desktop_config.json)に以下を追加:
{
"mcpServers": {
"jgrants": {
"command": "npx",
"args": ["jgrants-mcp"]
}
}
}
MCP に対応した任意のクライアントから利用可能です。
ユーザー: 「介護施設向けの補助金を探して」
→ LLM が list_subsidies を keyword: "介護" で実行
ユーザー: 「ID a0WJ200000CDTxsMAH の補助金の詳細を教えて」
→ LLM が get_subsidy_detail を実行し、以下の情報を取得:
ユーザー: 「公募要領をダウンロードして」
→ LLM が download_attachment を実行:
category: "application_guidelines"index: 0(詳細情報から取得)npm run build
npm run dev
このツールは jGrants の公開 API(https://api.jgrants-portal.go.jp/exp/v1/public)を使用しています。API キーは不要です。
MIT