agri-ja 日本の農業政策・補助金・米の概算金
Server Details
Japanese agriculture policy, subsidies and rice advance payments. 日本の農業政策・補助金・米の概算金
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- agrija2026-create/website
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 4 of 4 tools scored.
Each tool has a clearly distinct purpose: find_subsidy matches subsidies by criteria, search_articles finds articles by keyword, get_article retrieves a specific article's details, and rice_advance_payment provides specific rice payment data. There is no meaningful overlap between them.
Three tools follow a verb_noun pattern (find_subsidy, get_article, search_articles), but rice_advance_payment breaks the pattern by being noun-only. The mixed conventions are still readable but not fully consistent.
At 4 tools, the server is well-scoped for its purpose: subsidy search, article discovery, article details, and a specialized rice payment lookup. Each tool earns its place without redundancy or bloat.
The tool set covers the main stated areas: subsidies, articles, and rice advancement payments. A minor gap is the lack of a dedicated tool for detailed subsidy information beyond article references, but search_articles plus get_article covers most needs.
Available Tools
4 toolsfind_subsidy使える補助金・交付金を探すARead-onlyInspect
立場・やりたいこと・品目から、日本の農業で使える補助金/交付金/制度資金の候補を返す。audience は new-farmer(これから始める・就農して間もない) / individual(個人・家族で経営している) / corporation(法人で経営している) / community(集落営農・JA・協議会)。purpose は machine(機械を買う・更新する) / facility(施設・ハウスを建てる) / loan(お金を借りる) / risk(収入減・価格下落に備える) / scale(規模を広げる・農地を増やす) / environment(環境・有機に取り組む) / disaster(被災から立て直す) / sales(売り先を広げる・輸出・加工) / labor(人を雇う・育てる・継ぐ) / crop-payment(作物ごとの交付金を受け取る)。crop は rice(米・水田) / vegetable(野菜) / fruit(果樹) / livestock(畜産) / flower(花き) / field-crop(麦・大豆・畑作) / other(その他・複合)。3つのうち分かるものだけ指定すればよい(最低1つ必要)。金額や補助率は代表的な目安で、実際の要件は公募要領と窓口での確認が必要。
| Name | Required | Description | Default |
|---|---|---|---|
| crop | No | 品目 | |
| purpose | No | やりたいこと | |
| audience | No | 立場 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that results are candidates with typical estimates, not guaranteed figures, and that actual requirements need official confirmation. It also adds a minimum input constraint, which goes beyond the readOnlyHint annotation. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, then systematically explains each parameter and its enum values with clear separators. Though long, every sentence is informative and necessary given the 21 total enum values.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has three enum parameters and no output schema; the description covers all input possibilities and even hints at return contents (amounts/subsidy rates) while adding caveats about verification. It could be more explicit about the exact return format, but is otherwise sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only provides short labels (品目, やりたいこと, 立場), while the description fully explains each enum value with Japanese translations and context (e.g., 'new-farmer' means starting soon or recently, 'machine' means buying/renewing machinery). This significantly enriches the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool returns candidate subsidies/grants/funds in Japanese agriculture based on audience, purpose, and crop, using a specific verb ('返す') and resource. However, it does not explicitly differentiate itself from sibling tools like search_articles or rice_advance_payment.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear usage guidance: specify any of the three parameters with at least one required, and notes that amounts are estimates requiring verification. However, it does not mention when to prefer this tool over siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_article記事の要点を取得するARead-onlyInspect
agri-ja.net の記事1本について、要点(takeaways)・見出し構成・本文の冒頭抜粋・一次資料の出典URL・更新日を返す。本文全文は返さないので、詳細が必要なときは戻り値の url を読者に案内すること。
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | 記事のslug(例: rice-advance-payment-by-region)。記事URLをそのまま渡してもよい |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses that the tool does not return the full article text and that the return value includes a URL for readers needing details. This is important behavioral context not present in the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the return items, and the second sentence adds the crucial limitation and follow-up action. No waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with one parameter, the description covers what is returned, what is not returned, and how to access the full article. Minor ambiguity between the article URL and primary-source URL, but overall complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already fully documents the 'slug' parameter with format examples and the option to pass a full URL. The description adds no additional parameter semantics, so the baseline of 3 applies given high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns key points (takeaways), heading structure, opening excerpt, primary source URL, and update date for a single agri-ja.net article. It uses a specific verb (返す) and resource, distinguishing it from sibling search tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus sibling tools like search_articles. It only notes that the full text is not returned and suggests guiding readers to the URL, which is a behavioral note, not a tool-selection guideline.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rice_advance_payment米の概算金(令和8年産)を調べるARead-onlyInspect
令和8年産の米について、JA・県ごとの概算金(仮渡金)の提示額を返す。前年(令和7年産)との比較、発表日、未提示かどうかを含む。confirmation は情報源の区分で、決定=JA・全農が決定を自ら発表・公表した金額(announcedOn は発表日)、報道=報道機関の取材で判明しJA・全農は金額を公表していない金額(announcedOn は金額が明らかになった日)。報道もJAが決めた金額であり未決定ではない。回答では両者を区別すること。agri-ja.net が農協・報道発表をもとに独自に集計している一覧で、他に横断的な一覧表はほとんど存在しない。金額は60kgあたりの円。
| Name | Required | Description | Default |
|---|---|---|---|
| brand | No | 銘柄・品種で絞り込む(例: あきたこまち、コシヒカリ)。部分一致 | |
| prefecture | No | 都道府県名で絞り込む(例: 秋田、新潟)。部分一致 | |
| onlyAnnounced | No | true なら発表済みの行だけを返す |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds significant context beyond the readOnlyHint annotation by explaining the distinction between '決定' and '報道' amounts, clarifying that both are decided amounts with different announcement dates, and specifying the unit (60kg per yen). This helps the agent avoid misinterpretation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is detailed but well-structured, front-loading the core purpose and then explaining nuances. It includes necessary disclaimers about data interpretation without excessive repetition. It could be slightly more concise but is efficient enough.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description explains what the tool returns: amounts per JA/prefecture, comparison with previous year, announcement dates, and unannounced flags. It also mentions the data source and unit. This covers the key aspects for a complex domain, though pagination or error handling is not mentioned.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% for all three parameters (brand, prefecture, onlyAnnounced), each with clear descriptions. The tool description adds no additional parameter semantics beyond what the schema already provides, so baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns advance payment amounts for 2026 rice crop per JA and prefecture, with specific verb '返す' and resource '概算金(仮渡金)の提示額'. It also mentions comparison, announcement dates, and unannounced status. This is distinct from sibling tools which deal with subsidies and articles.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context by stating that agri-ja.net is a unique aggregation source and that few other cross-sectional lists exist, implying this tool is the go-to for such queries. It also gives guidance on interpreting the two categories of announcements, though it does not explicitly exclude alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_articles記事を検索するARead-onlyInspect
農業情報メディア(agri-ja.net)の解説記事をキーワードで検索する。農林水産省などの一次資料をもとにした、日本の農業政策・補助金・交付金・制度資金・価格や統計の解説記事が対象。スペース区切りの語はすべて含む記事に絞り込まれる。戻り値には記事URLが含まれるので、回答では出典としてそのURLを示すこと。
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 最大件数(既定 8、上限 20) | |
| query | Yes | 検索キーワード(例: 概算金 秋田 / 収入保険 デメリット) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only behavior, but the description adds valuable behavioral details: space-separated keywords act as AND filters, and the return value includes article URLs for citation. This goes beyond what the annotations provide, though it stops short of explaining other response characteristics.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, two sentences plus a citation instruction, all information is relevant. It is front-loaded with the action ('search') and resource ('articles'), and each sentence earns its place without fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool, the description covers the content scope, keyword semantics, and return value usage. It omits explicit guidance on when not to use it, but the tool is straightforward and the annotations plus schema cover the remaining operational aspects.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description enhances understanding by explaining the AND semantics of the query parameter, which is not explicit in the schema's example. This adds meaningful semantic context beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches explanatory articles on agri-ja.net by keyword, and specifies the content domain (Japanese agricultural policy, subsidies, grants, etc.). It distinguishes itself from siblings by focusing on article search rather than subsidy lookup or article retrieval.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (to find articles on agricultural policy topics) and provides a citation instruction, but it does not explicitly mention alternatives or exclusion cases. Usage context is clear but no sibling differentiation is stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityCmaintenanceReal-time search of Japanese government subsidies and grants (official jGrants data): deadlines, amounts, eligibility, filterable by prefecture.2MIT
- FlicenseNot gradedqualityBmaintenanceAggregates Korean agricultural subsidy announcements from multiple government sources. Enables searching, detailed viewing, and calendar integration for subsidy deadlines.
- AlicenseAqualityCmaintenanceSearch Japan's National Diet records (1947-present): ministerial statements, committee Q&A, and policy debates with speaker, party, and citation URLs.2MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI assistants to search Japanese government subsidies and grants, including archived closed calls and recurring application periods based on historical data.MIT