Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

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.

Naming Consistency3/5

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.

Tool Count5/5

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.

Completeness4/5

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 tools
find_subsidy使える補助金・交付金を探すA
Read-only
Inspect

立場・やりたいこと・品目から、日本の農業で使える補助金/交付金/制度資金の候補を返す。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つ必要)。金額や補助率は代表的な目安で、実際の要件は公募要領と窓口での確認が必要。

ParametersJSON Schema
NameRequiredDescriptionDefault
cropNo品目
purposeNoやりたいこと
audienceNo立場
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters5/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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記事の要点を取得するA
Read-only
Inspect

agri-ja.net の記事1本について、要点(takeaways)・見出し構成・本文の冒頭抜粋・一次資料の出典URL・更新日を返す。本文全文は返さないので、詳細が必要なときは戻り値の url を読者に案内すること。

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYes記事のslug(例: rice-advance-payment-by-region)。記事URLをそのまま渡してもよい
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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年産)を調べるA
Read-only
Inspect

令和8年産の米について、JA・県ごとの概算金(仮渡金)の提示額を返す。前年(令和7年産)との比較、発表日、未提示かどうかを含む。agri-ja.net が農協・報道発表をもとに独自に集計している一覧で、他に横断的な一覧表はほとんど存在しない。金額は60kgあたりの円。

ParametersJSON Schema
NameRequiredDescriptionDefault
brandNo銘柄・品種で絞り込む(例: あきたこまち、コシヒカリ)。部分一致
prefectureNo都道府県名で絞り込む(例: 秋田、新潟)。部分一致
onlyAnnouncedNotrue なら発表済みの行だけを返す
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and the description adds valuable context: the data is independently compiled by agri-ja.net from JA and press releases, amounts are per 60kg, and the response includes comparison and unannounced status. 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is four sentences, each providing distinct information: main function, included fields, data source, and unit. It is front-loaded and contains no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a relatively simple read-only tool with optional filters and no output schema, the description adequately covers the return content and data source. It could mention default behavior with no filters, but the provided details are sufficient for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

All three parameters (brand, prefecture, onlyAnnounced) are fully documented in the input schema with descriptions. The tool description adds no additional parameter-specific semantics, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

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 by JA/prefecture, including year-over-year comparison, announcement date, and unannounced status. This specific verb+resource clearly distinguishes it from sibling tools like find_subsidy and article search tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this is the primary tool for this data by noting that few cross-sectional lists exist, but it does not explicitly provide when-to-use or when-not-to-use guidance relative to alternatives. It provides clear context but lacks explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_articles記事を検索するA
Read-only
Inspect

農業情報メディア(agri-ja.net)の解説記事をキーワードで検索する。農林水産省などの一次資料をもとにした、日本の農業政策・補助金・交付金・制度資金・価格や統計の解説記事が対象。スペース区切りの語はすべて含む記事に絞り込まれる。戻り値には記事URLが含まれるので、回答では出典としてそのURLを示すこと。

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo最大件数(既定 8、上限 20)
queryYes検索キーワード(例: 概算金 秋田 / 収入保険 デメリット)
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.