Traditional Chinese (zh-TW) Taiwan Community Forum
Server Details
Read-only MCP: search & read a Traditional Chinese (zh-TW) Taiwan community forum (PTT-style).
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Shuaigle/roomnology-forum-mcp
- 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.3/5 across 5 of 5 tools scored. Lowest: 3.7/5.
Each tool has a clear, distinct purpose: fetching single articles, listing articles by board, listing comments, discovering forums, and searching. No overlap in functionality.
All tool names follow a consistent snake_case verb_noun pattern (get_article, list_articles, list_comments, list_forums, search_forum), making them predictable.
Five tools cover the essential read operations for a forum (discover forums, list articles, get full article, list comments, search). This is well-scoped and not excessive.
The toolset is read-only, lacking any write operations (create, update, delete articles or comments). For a community forum, this is a significant gap that prevents agents from performing typical user actions.
Available Tools
5 toolsget_articleAInspect
Get a single published article with its full Traditional Chinese (zh-TW) content, by article id (UUID).
| Name | Required | Description | Default |
|---|---|---|---|
| articleId | Yes | Article id (UUID). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It mentions that only published articles are returned and the content language, but it omits details about error handling, authentication needs, or what happens if the article is not found. Adequate but not rich.
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?
Single sentence, front-loaded with verb and resource, no wasted words. Ideal conciseness.
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's simplicity (one param, no output schema), the description is fairly complete but could hint at the return structure or error cases. It mentions content language but omits response format.
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% and the description merely echoes the parameter's purpose ('by article id (UUID)'). It adds minimal value beyond the schema's description of 'Article id (UUID).'
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 'Get', the resource 'a single published article', and specifies that it returns full Traditional Chinese content by article id (UUID). It distinguishes from siblings like list_articles (multiple articles) and list_comments (different resource).
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 (get a single article by ID) but does not explicitly state when not to use or provide alternatives. For example, it doesn't mention that list_articles is for browsing multiple articles.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_articlesAInspect
List published articles from this Traditional Chinese (zh-TW) Taiwan community forum (PTT-style boards for news, sharing, and user-created topics; the largest collection is a news-digest board covering primarily late 2025 to early 2026). To list a specific board, provide BOTH forumName and subForumName (providing only one is rejected). Otherwise pass sort=HOT for recently trending articles (engagement-ranked over a recent time window; may return an empty page when there are no recently posted articles), or omit sort (or sort=LATEST) for the most recent. sort must be HOT or LATEST. Content is truncated; use get_article for full content.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-based page number (default 1). | |
| size | No | Page size, max 500 (default 10). | |
| sort | No | HOT or LATEST (default LATEST). | |
| forumName | No | Forum board name (pair with subForumName). | |
| subForumName | No | Sub-board name (pair with forumName). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses key behaviors: content truncation, requirement for both board names, sort behavior (empty page for HOT), and temporal scope (late 2025 to early 2026). This is comprehensive.
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-organized, front-loading the primary purpose and then specifying requirements. It is slightly lengthy but every sentence adds value, though minor redundancy could be trimmed.
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 no output schema and no annotations, the description covers all critical aspects for an agent: forum context, parameter constraints, behavioral nuances, and cross-references to sibling tools. It is sufficient for correct invocation.
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 baseline is 3. Description adds value by clarifying that forumName and subForumName must be provided together, specifying sort options and their effects, and noting page size max. This goes beyond 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 clearly states it lists published articles from a specific Traditional Chinese Taiwan community forum, with details on forum structure. It distinguishes from siblings by mentioning get_article for full content and contrasting with other tools implicitly.
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?
Explicitly states when to use both forumName and subForumName, explains sort options with HOT vs LATEST, and notes that HOT may return empty page. Also advises using get_article for full content, providing clear usage boundaries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_commentsAInspect
List the Traditional Chinese (zh-TW) comments/replies on a forum article, by article id (UUID). Paginated.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-based page number (default 1). | |
| size | No | Page size, max 500 (default 10). | |
| articleId | Yes | Article id (UUID). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Discloses language filter and pagination, but does not mention auth requirements, behavior for missing articleId, or sorting order.
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?
Single sentence, front-loaded with key info, 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?
Adequate for a simple list tool with 3 params and no output schema; could mention default sorting, but otherwise covers purpose and constraints.
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?
Adds meaning beyond schema by specifying language filter (Traditional Chinese) and pagination; schema already covers parameter formats.
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?
Clearly states it lists comments/replies on a forum article, filtered by Traditional Chinese (zh-TW), with pagination. Distinct from siblings like get_article, list_articles, etc.
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?
Gives context (by article ID, paginated) but does not explicitly state when to use vs alternatives or provide exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_forumsAInspect
List all boards and sub-boards in this Traditional Chinese (zh-TW) Taiwan community forum. Call this first to discover board names before listing articles by board.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description does not disclose potential behavioral traits like auth requirements or rate limits. However, it correctly implies a read-only operation without contradictions.
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?
Two concise sentences with no redundancy. 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 parameterless list tool without output schema, the description is nearly complete. It could optionally hint at the output format, but the usage guidance compensates.
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?
Input schema has no parameters and 100% coverage, so description does not need to elaborate. Baseline score 4 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?
Clearly states it lists all boards and sub-boards in a specific forum (zh-TW Taiwan). The purpose is distinct from sibling tools like get_article, list_articles, list_comments, and search_forum.
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?
Explicitly instructs 'Call this first to discover board names before listing articles by board', providing clear context for when and why 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.
search_forumAInspect
Search this Traditional Chinese (zh-TW) Taiwan community forum for published articles by keyword (matches title and body, case-insensitive). The forum is PTT-style with news, sharing, and user-created boards; its largest collection is a news board of digests of popular Taiwanese discussion, primarily late 2025 to early 2026. Returns a page of article summaries (content truncated); use get_article for full content. Use Traditional Chinese keywords for best results.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-based page number (default 1). | |
| size | No | Page size, max 500 (default 10). | |
| query | Yes | Keyword to search for in article title and body. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses it returns truncated article summaries, is case-insensitive, and matches title and body. It does not mention rate limits or authentication, but gives sufficient behavioral context for a search tool.
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 (several sentences), well-structured, and front-loaded with the core purpose. Every sentence adds value without unnecessary detail.
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 no output schema, the description adequately explains the return format (page of summaries, truncated) and directs to get_article for full content. It also describes the forum context. Parameter documentation is 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?
Schema coverage is 100% and the description adds minimal extra meaning (e.g., case-insensitivity for query). It reiterates defaults and max values that are already in the schema, so it adds little beyond structured field 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 clearly states it searches a Traditional Chinese Taiwan community forum for published articles by keyword, matching title and body, case-insensitive. It distinguishes from sibling tools like get_article (full content) and list_articles (list without search).
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 advises using get_article for full content and suggests Traditional Chinese keywords for best results. It provides context about the forum style and date range but does not explicitly differentiate from other search or list tools like list_comments.
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!