Skip to main content
Glama

コエカツ アンケート集計データ

Server Details

コエカツの公開アンケート集計を検索・取得できる読み取り専用サーバー。登録不要。引用用の時点固定URLと出典つき。

Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL

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 3.9/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: get_survey retrieves a specific survey's details, list_categories explores the category hierarchy, and search_surveys finds surveys by keyword. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow the same verb_noun snake_case pattern: get_survey, list_categories, search_surveys. The naming is consistent and predictable.

Tool Count5/5

With 3 tools, the server is well-scoped for its purpose of accessing survey data. Each tool fulfills a necessary role in the discovery and retrieval workflow without unnecessary redundancy.

Completeness5/5

The tool set covers the full lifecycle from discovering surveys (via search or categories) to retrieving detailed results. As a read-only data source, there are no obvious gaps or missing operations.

Available Tools

3 tools
get_survey調査の集計結果を取得するAInspect

調査1件の設問・選択肢・得票数・割合を取得します。引用用の固定URL(citation.stable_url。固定できる時点が無い調査では null)とライセンスも一緒に返します。

ParametersJSON Schema
NameRequiredDescriptionDefault
as_ofNoYYYY-MM 形式。その月末時点までの累計に固定する(引用向け)。省略すると最新の累計
survey_idYessearch_surveys が返した survey_id
trusted_onlyNotrue にすると、メール確認済みアカウントの票だけに絞った集計を返す
Behavior3/5

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

With no annotations, the description carries the burden of disclosing behavior. It indicates this is a read operation ('取得') and notes the nullable citation.stable_url condition. However, it does not disclose potential side effects, authentication requirements, or other behavioral nuances beyond the basic retrieval.

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 compact, consisting of two sentences. It front-loads the core purpose and adds essential return-value details without unnecessary 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?

The description adequately explains the tool's primary function and return fields, including edge cases (null citation URL). While no output schema exists, the description lists all key return components, making it sufficiently complete for a simple retrieval tool.

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 covers 100% of parameters with descriptions, so the baseline is 3. The description adds no parameter-specific details, but given the high schema coverage, it doesn't need to compensate.

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 specifies the action ('取得します' - retrieves) and the exact resource (one survey's questions, choices, vote counts, percentages, plus citation URL and license). This differentiates it from sibling tools like search_surveys (which searches) and list_categories (which lists categories).

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?

No guidance is provided in the description about when to use this tool versus search_surveys or list_categories. The need for a survey_id is implied but not explicitly connected to search_surveys, and no exclusions or alternative workflows are mentioned.

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

list_categoriesカテゴリ一覧を見るAInspect

どんな分野の調査があるかを大分類→中分類→小分類の階層で確認できます。何が調べられるか把握したいときに使います。

ParametersJSON Schema
NameRequiredDescriptionDefault
parent_idNo指定するとその配下だけを返す。省略すると大分類の一覧
Behavior3/5

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

No annotations are provided, so the description carries the full burden of explaining behavior. It adds useful context about the hierarchical view and the read-only act of confirming categories, but it does not state the return format, potential side effects, or permissions. For a simple list tool, this is minimally adequate.

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 long, front-loaded with what the tool does, followed by when to use it. Every phrase earns its place, with no redundancy or filler.

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 tool with one optional parameter and no output schema, the description covers the core purpose and a typical use case reasonably well. It would benefit from mentioning the response shape (e.g., category IDs and names), but the low complexity makes the current description largely 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 fully describes parent_id with 100% coverage, so the baseline is 3. The description's mention of the hierarchy adds helpful context for understanding parent-child relationships, but it does not add parameter-specific details beyond what the schema already provides.

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 what the tool does: it lets you view research fields organized in a hierarchy of major, middle, and minor categories. It uses a specific verb ('確認できます') and resource ('カテゴリ'), and it is distinct from the sibling tools by focusing on category browsing rather than survey retrieval or search.

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 gives a clear use case: 'use it when you want to understand what can be investigated.' It does not explicitly mention alternative tools or provide when-not-to-use guidance, but the context is sufficiently clear for a simple listing tool.

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

search_surveysアンケート調査を探すAInspect

キーワードでアンケート調査を検索します。言い換え(AI/人工知能、リモートワーク/在宅勤務など)でも見つかります。返ってくる survey_id を get_survey に渡すと集計結果を取得できます。

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo取得件数(既定10、最大30)
queryYes探したい話題。日本語の自然な言い回しでよい(例: 老後の不安、AI活用、在宅勤務のつらいところ)
category_idNolist_categories が返した category_id。指定するとその配下(全階層)の調査だけを検索する
min_respondentsNo回答者数の下限。引用に耐える標本だけが欲しい場合に指定する
Behavior3/5

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

With no annotations provided, the description carries the burden and does disclose a useful behavioral trait: paraphrase matching (e.g., AI/artificial intelligence). It also indicates the output's role, but does not detail the return structure, pagination, or search scoping, leaving some transparency gaps.

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 concise sentences: the first states the core action, and the second adds valuable behavioral and workflow context. It is front-loaded, free of filler, and every sentence earns its place.

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?

Given the absence of an output schema, the description adequately explains the key workflow: search returns survey_id which is passed to get_survey. It also covers paraphrase matching, but omits return format details such as whether a list is returned or how results are ordered, leaving minor gaps.

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 input schema has 100% coverage with descriptive text for all four parameters. The description's mention of keyword search and natural phrasing closely mirrors the schema's query description, adding no new parameter-level meaning beyond what the schema already provides.

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's function: 'search surveys by keyword' with a specific verb and resource. It distinguishes itself from siblings by explicitly noting returned survey_id feeds into get_survey, and the paraphrase-matching detail adds further scope clarity.

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 when to use this tool (when you need to find surveys to obtain survey_id) and explicitly outlines the workflow to get_survey. It lacks explicit 'when not to use' guidance or naming of alternative tools, but the context is clear.

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

  • A
    license
    -
    quality
    A
    maintenance
    Read-only MCP server for searching Japanese government procurement bid notices (官公需) from the SME Agency's KKJ portal. Includes AI ranking, PDF requirement extraction, and CSV/calendar export.
    90
    Apache 2.0

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources