fearnation-mcp
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
Each tool has a clearly distinct purpose: browse posts (discover), retrieve full post (get_post), list recent posts (list_recent), and search news items (search_news). The descriptions and parameters uniquely define each operation with no overlap.
Naming Consistency4/5Names mostly follow a verb_... pattern (get_post, list_recent, search_news) but 'discover' is a single word without an underscore, causing a minor inconsistency. Overall, verbs are clear and the pattern is predictable.
Tool Count4/5With 4 tools, the set is slightly lean but covers essential operations for a news/post server: browsing, retrieval, recency, and search. It is appropriately scoped without being overly sparse or cluttered.
Completeness4/5The tool surface covers core read operations (list, get, search) and filtering by date, title, and post type. Minor gaps exist (e.g., no tool to list post types or sections independently), but the essential workflows for consuming content are complete.
Average 3.8/5 across 4 of 4 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 21 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It states that the tool returns summaries and not items, which is useful. However, it does not declare whether the operation is read-only, any authentication requirements, rate limits, or other side effects. Given the lack of annotations, this is insufficient for full transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, front-loaded with the core purpose and return type, followed by filter details. Every sentence adds value with no redundancy or fluff. Ideal conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 4 optional parameters, no required fields, and an output schema exists, the description covers essential aspects. However, it lacks information about pagination, result ordering, default behavior when no filters are applied, and any limits. With output schema present, the burden is reduced, but additional context would improve completeness for a browse tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage, so the description must compensate. It explains that 'query' is a title substring, 'post_type' has two specific values ('世界苦茶' or '台海危機ALERT'), and dates are in ISO YYYY-MM-DD format. This adds meaningful semantics to all four parameters. Minor improvement could be a more explicit mapping to schema property names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function ('Browse the post catalogue') and its return type ('post-level summaries, not items'). It also enumerates the filtering options, providing specificity. However, it does not explicitly differentiate from sibling tools like get_post or list_recent, though the filtering scope implies a distinct use case.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description recommends using at least one filter ('At least one filter recommended') which is a usage hint. However, it does not provide explicit guidance on when to use this tool versus siblings, nor does it mention prerequisites or when not to use it. The guidance is minimal and implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It states it lists posts and the returned fields, implying a read-only operation. It does not disclose potential limits (e.g., max days) or sorting behavior, but is reasonably transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with two sentences: first states the action, second gives usage hint and output fields. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given one parameter, no annotations, and the existence of an output schema, the description covers the core functionality, usage hint, and output format. It could mention the lack of other filtering options or the recency limit.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 0% description coverage; the description refers to 'last N days' which maps to the 'days' parameter but does not explicitly mention the parameter or its default value. It adds some clarity but not enough for full compensation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'List posts from the last N days' specifying the verb and resource. It provides a usage hint 'Use to orient before searching' which distinguishes it from search tools, but does not explicitly differentiate from the sibling 'discover'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'Use to orient before searching' gives context for when to use this tool for initial overview. However, it lacks explicit guidance on when not to use it or alternatives like 'search_news' or 'get_post'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the cross-script behavior (Simplified Chinese matching Traditional Chinese), the return fields, and the inclusive date range behavior. However, it does not mention pagination behavior or ordering, which would be valuable for a search tool. Overall, it provides key behavioral traits beyond the bare minimum.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a main sentence, a note on cross-script behavior, and a bulleted parameter list. It is concise without unnecessary words. Minor improvement could be integrating the cross-script note more smoothly, but overall it is clear and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the description appropriately lists the return fields (slug, section, headline, body, pub_date, seq). It covers the essential search parameters (query, section, date range, limit). However, it lacks details on pagination (e.g., how to get next page) and ordering (e.g., relevance vs date), which would improve completeness for a search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds significant meaning: defines 'query' as free-text, lists valid values for 'section' (e.g., 中国新闻, 印太新闻), specifies date format as ISO YYYY-MM-DD inclusive, and provides a numeric range for 'limit' (1-200, default 20). This greatly enhances the schema's minimal information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search FearNation news items by full-text query.' It specifies the verb 'search' and the resource 'news items'. It also distinguishes from siblings by focusing on full-text querying, whereas siblings like 'list_recent' or 'get_post' serve different retrieval patterns.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal guidance on when to use this tool versus alternatives. It does not explicitly state scenarios where this tool is preferred, nor does it mention when not to use it. The sibling tools are listed but no differentiation is offered, leaving the agent to infer usage from the purpose alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses conditional return behavior (single vs multiple posts) and fields (items, financial_data, summaries). No annotations, so description carries full burden; missing auth needs, rate limits, or error cases.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with purpose. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With output schema present, description covers return format variations. Missing error handling or prerequisites, but sufficient for a simple retrieval tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Explains 'slug_or_date' parameter with examples ('shijie-kucha-2024-01-15' or ISO date). Schema has no description, so this adds significant meaning beyond type string.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Clear verb+resource: 'Get a full post' by identifier. Distinguishes from sibling tools (discover, list_recent, search_news) which are for discovery, not retrieval by identifier.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Specifies when to use: when you have a slug or ISO date. Implicitly suggests using siblings otherwise, but does not explicitly list alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Star-Trails/fearnation-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server