agent-mcp
Server Details
Korean-Japanese bilingual community. Read public posts/comments, route Korea/Japan queries.
- Status
- Healthy
- 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.
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.2/5 across 6 of 6 tools scored.
Most tools are clearly distinct (search, recent posts, health check, routing), but fetch and get_post_with_comments both retrieve posts, differing only by id type and whether comments are included. This overlap could cause misselection, though the descriptions help.
Naming styles are mixed: bare verbs (fetch, search), get_ prefixed names (get_post_with_comments, get_recent_posts), and a long noun-like name (get_kimchisushi_agent_entrypoints). The inconsistent use of verbs and prefixes makes the pattern unpredictable.
With 6 tools, the server is well-scoped for a read-only content access service. Each tool serves a clear purpose without redundancy or excessive sprawl.
The tool surface covers the core lifecycle for the domain: searching, fetching individual items, listing recent items, and routing to relevant areas. No obvious gaps for a read-only information retrieval service.
Available Tools
6 toolsfetchFetch a KimchiSushi sourceARead-onlyIdempotentInspect
Fetch one KimchiSushi citation source or public community post by its opaque search result id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Opaque id returned by search. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| url | Yes | |
| text | Yes | |
| title | Yes | |
| metadata | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the description need not repeat those. The description adds no additional behavioral context beyond the fetch-by-id semantics, which is already clear from the schema and 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 entire description is one sentence, front-loaded with the action and object, with no filler or repetition of annotations/schema. It earns a 5.
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?
This is a simple fetch-by-id tool with one documented parameter, strong annotations, and an output schema. The description covers what the tool retrieves and how to identify the item, so nothing critical is missing.
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 single parameter 'id' is fully described in the schema as an opaque id returned by search, and the description confirms this by saying 'opaque search result id.' Since schema coverage is 100%, the description adds little beyond the schema, so a baseline 3 is appropriate.
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 uses the specific verb 'Fetch' and identifies the resource ('one KimchiSushi citation source or public community post') plus the method of selection ('by its opaque search result id'). This clearly distinguishes it from sibling listing/search tools and from get_post_with_comments, which targets posts with comments.
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 implicitly states the tool should be used with an opaque search result id, which strongly suggests a search-first workflow. However, it does not explicitly name alternatives or provide when-not-to-use guidance, so it falls just short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_kimchisushi_agent_entrypointsGet KimchiSushi agent entrypointsARead-onlyIdempotentInspect
Route a Korea/Japan question to KimchiSushi community, guide, or citation-source pages.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| site | Yes | |
| purpose | Yes | |
| service | Yes | |
| languages | Yes | |
| primary_entrypoints | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds context about the tool's scope (Korea/Japan, community/guide/citation pages) but does not disclose additional behaviors like response format or rate limits, so it contributes modest value beyond 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 a single concise sentence that states the purpose and scope without any wasted words. It is front-loaded with the action and resource.
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?
Given the tool has no parameters, a clear output schema, and comprehensive annotations, the description is sufficient to understand its purpose and scope. The mention of 'community, guide, or citation-source pages' provides enough context for an agent to select it appropriately.
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 tool has zero parameters and schema coverage is 100%, so there are no parameter semantics to explain. The description correctly omits parameter details, and the baseline for 0 params is 4.
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 uses a specific verb ('route') and resource ('Korea/Japan question to KimchiSushi community, guide, or citation-source pages'), clearly distinguishing it from sibling tools like fetch or search. The title reinforces the 'get entrypoints' action, making the purpose unambiguous.
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 'Route a Korea/Japan question...' gives a clear use case: when the question is Korea/Japan-specific. It does not explicitly mention alternatives or exclusions, but the context of sibling tools (search, fetch) implies this is the targeted entry-point router for that domain.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_post_with_commentsGet a KimchiSushi post with commentsARead-onlyIdempotentInspect
Fetch one known public KimchiSushi post and its public comments by UUID.
| Name | Required | Description | Default |
|---|---|---|---|
| post_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| post | Yes | |
| comments | Yes | |
| comment_count | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive hints. The description adds behavioral context by specifying that only public posts and comments are returned, and that the post must be 'known' (exists). This goes beyond the structured hints without contradicting them.
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 a single, efficient sentence that front-loads the verb and resource, with no filler or redundant content. Every word adds value.
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 and an existing output schema, the description adequately covers purpose and key constraints (public, by UUID). It does not describe error cases (e.g., not found), but this is not essential given the output schema and annotations.
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 provides only a required post_id string with no description (0% coverage). The description compensates by indicating that the parameter should be a UUID, adding semantic clarity not present in 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 verb (fetch), resource (one known public KimchiSushi post and its public comments), and identifier (by UUID). It distinguishes from siblings like get_recent_posts (which lists multiple) and search (which queries by criteria).
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 it: when you have a UUID and need a specific post with its comments. However, it does not explicitly mention alternatives or exclusions, such as using search when the post_id is unknown or get_recent_posts for a list.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_recent_postsGet recent KimchiSushi postsARead-onlyIdempotentInspect
Return recent or popular public KimchiSushi community posts without a keyword search.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | ||
| limit | No | ||
| category | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | Yes | |
| posts | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds that posts are 'public' and that no keyword search is involved, but it does not disclose additional behavioral details like pagination or how sorting works beyond the schema enum. With strong annotations, this is acceptable but not highly informative.
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 a single, clear sentence that immediately states the tool's purpose and scope. It is concise, front-loaded, and has no wasted words.
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?
Given that the output schema exists and annotations cover safety, the description is largely complete for a simple read-only listing tool. It conveys the core purpose and scope, though parameter usage is left to inference from enums. The lack of explicit parameter documentation is a minor gap, but overall the tool is well-contextualized.
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 0%, and the description does not explain the 'limit' or 'category' parameters. The phrase 'recent or popular' only loosely relates to the 'sort' enum, but does not map 'popular' to the actual enum value 'hot'. The description fails to compensate for the lack of schema descriptions.
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 uses a specific verb 'Return' and clearly specifies the resource: 'recent or popular public KimchiSushi community posts'. It also explicitly excludes keyword search, distinguishing this tool from the sibling 'search' tool. This is a clear, well-scoped purpose.
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 phrase 'without a keyword search' provides a clear exclusion, indicating this tool is for browsing recent/popular public posts rather than performing keyword-based searches. It doesn't explicitly name the alternative 'search' tool, but the context is clear enough to guide when to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
health_checkCheck KimchiSushi MCP healthARead-onlyIdempotentInspect
Check whether an MCP-compatible client can reach KimchiSushi.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| mode | Yes | |
| service | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds the behavioral detail that the tool tests reachability, but it does not elaborate on what happens if unreachable or what the output represents. With annotations present, a score of 3 is appropriate.
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 a single, clear sentence that directly states the purpose. It contains no unnecessary words and is front-loaded with the action and subject.
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 health check tool with no parameters, strong annotations, and an output schema (not shown but present), the description provides sufficient context. It does not need to explain return values because the output schema covers that.
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 tool has zero parameters, so the baseline is 4. The description does not need to add parameter details, and the empty input schema already fully describes the parameter surface.
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's function: checking whether an MCP-compatible client can reach KimchiSushi. It uses a specific verb ('check') and resource ('KimchiSushi'), and it is distinct from sibling tools like fetch, search, or get_recent_posts, which serve different purposes.
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 conveys that this is a health/connectivity check, so the usage context is implied. However, it does not explicitly state when to use this tool versus alternatives or provide any exclusion criteria, such as 'use this before other calls to verify connectivity.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
searchSearch KimchiSushi knowledgeARead-onlyIdempotentInspect
Search KimchiSushi for source-backed Korea/Japan study, working-holiday, or public community information.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural-language search query in Korean, Japanese, or English. |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so safety is covered. The description adds valuable behavioral context by emphasizing 'source-backed' results and the specific topical scope (Korea/Japan study, working-holiday, public community), which helps the agent set expectations about result content. It does not contradict 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 a single, front-loaded sentence that immediately conveys the action and scope. It is concise with no redundant words, and every phrase earns its place by specifying the resource, the nature of the search ('source-backed'), and the topical coverage.
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 is simple (one parameter), has a rich output schema (not shown but known to exist), and annotations that cover safety and idempotency. The description sufficiently explains what the tool searches and the kind of information it returns, leaving no major gaps for an agent to misuse it. The existence of an output schema means return-value details need not be in the description.
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 description covers 100% of the parameter ('query' is described as a natural-language search query in Korean, Japanese, or English). The description does not add parameter-specific details beyond this, but since schema coverage is complete, the baseline of 3 is appropriate.
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 states a specific verb ('Search') and resource ('KimchiSushi') with a clear scope: 'source-backed Korea/Japan study, working-holiday, or public community information.' This distinguishes it well from sibling tools like get_recent_posts or fetch, which clearly are for retrieving specific posts rather than searching across topics.
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 clearly implies when to use this tool: whenever the agent needs to search for the specified types of information. It provides context by listing the information scope, but does not explicitly name alternatives or exclusion cases. Since the sibling tools are distinct (e.g., get_post_with_comments for retrieving a specific post), the usage context is clear enough without explicit when-not-to-use guidance.
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
- Flicense-qualityBmaintenanceRead-only MCP server that serves curated daily Korean AI briefings (papers, releases, community, video, deepdive) via 7 tools, with no LLM calls per request.
- FlicenseBqualityDmaintenanceEnables AI tools to search and retrieve data from various South Korean and Japanese academic databases, including research journals, historical records, and legislative information.3
- AlicenseBqualityBmaintenanceTranslates Korean KakaoTalk messages to natural Japanese with pronunciation and expression breakdowns, corrects user-written Japanese sentences, explains expressions, and generates review cards and quizzes for beginner learners.5MIT
- Flicense-qualityBmaintenanceIntegrates Korean public data sources including law, court cases, corporate disclosures, and public data portal, with comparative US and German case law support.8