MCP Feedback Collector
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation3/5
The three tools have distinct primary purposes—collecting feedback, getting image info, and picking an image—but there is some overlap between get_image_info and pick_image since both handle images. An agent might occasionally misselect between them when the task involves image processing, though their descriptions clarify the difference.
Naming Consistency4/5The tool names follow a consistent verb_noun pattern (collect_feedback, get_image_info, pick_image), which is clear and predictable. There are no deviations in naming style, making it easy for an agent to parse and understand the tool functions.
Tool Count3/5With only 3 tools, the server feels thin for a 'Feedback Collector' domain, as it lacks tools for managing or analyzing feedback (e.g., list_feedback, delete_feedback). However, the tools cover basic collection and image handling, so it's borderline but not severely lacking.
Completeness2/5The server is incomplete for its stated purpose of collecting feedback. It provides tools to collect and handle images but lacks essential operations like storing, retrieving, or summarizing feedback. This creates significant gaps that could cause agent failures in feedback management workflows.
Average 3.3/5 across 3 of 3 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 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?
With no annotations provided, the description carries full burden for behavioral disclosure. While it implies a read-only operation ('get information'), it doesn't specify whether this requires file system access, what happens with invalid paths, error conditions, or performance characteristics. The description adds minimal behavioral context beyond the basic purpose.
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 appropriately concise with two sentences: one stating the purpose and another documenting the parameter. The structure is clear and front-loaded with the main functionality, though the Chinese-to-English translation creates minor redundancy in the parameter documentation.
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?
For a single-parameter read operation with no output schema, the description provides adequate basic information about what the tool does and what parameter it requires. However, it lacks details about return values, error handling, and behavioral constraints that would be helpful given the absence of annotations.
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 description explicitly documents the single parameter 'image_path' and its purpose ('图片文件路径' meaning 'image file path'), adding meaningful semantics beyond the schema which has 0% description coverage. This fully compensates for the schema gap for this single-parameter tool.
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 purpose: '获取指定路径图片的信息(尺寸、格式等)' translates to 'Get information about the specified image path (dimensions, format, etc.)'. This provides a specific verb ('get information') and resource ('image'), though it doesn't explicitly differentiate from sibling tools like 'pick_image'.
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 no guidance on when to use this tool versus alternatives like 'pick_image' or 'collect_feedback'. It simply states what the tool does without context about appropriate use cases or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/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. It describes the tool's behavior as popping up a dialog for user interaction, which is useful. However, it doesn't disclose critical traits like whether this is a blocking operation, what happens on user cancellation, error handling, or UI constraints (e.g., supported image formats). For a user-interactive tool with zero annotation coverage, this is a significant gap.
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 and well-structured: two sentences that clearly state the tool's function and user options. Every sentence adds value without redundancy, making it front-loaded and easy to understand.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (user-interactive dialog) and lack of annotations or output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., image data, file path, or error), how it handles edge cases, or any dependencies. For a tool with no structured data to supplement, this leaves key contextual gaps.
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 parameters with 100% coverage, so no parameters need documentation. The description appropriately doesn't discuss parameters, which is efficient. Baseline is 4 for 0 parameters, as it avoids unnecessary details.
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 purpose: '弹出图片选择对话框,让用户选择图片文件或从剪贴板粘贴图片' (pop up an image selection dialog to let users choose image files or paste from clipboard). It specifies the action (pop up dialog) and resource (image files/clipboard images), though it doesn't explicitly differentiate from sibling tools like 'get_image_info' or 'collect_feedback'.
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 implies usage context by mentioning '用户可以选择本地图片文件,或者先截图到剪贴板然后粘贴' (users can choose local image files or first screenshot to clipboard then paste), suggesting when to use it for image input. However, it lacks explicit guidance on when to use this vs. alternatives like 'get_image_info' (which might retrieve image metadata) or 'collect_feedback' (which might involve user input beyond images).
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 provided, the description carries full burden. It discloses the interactive dialog behavior with timeout functionality and mentions that feedback may include text and images. However, it doesn't address important behavioral aspects like authentication requirements, rate limits, error conditions, or what happens when timeout occurs.
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 appropriately sized with clear sections (purpose, args, returns). Each sentence adds value, though the structure could be slightly more front-loaded by moving the purpose statement before the bilingual formatting.
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?
For an interactive feedback collection tool with 2 parameters, no annotations, and no output schema, the description provides adequate basic information but lacks details about the interactive dialog implementation, error handling, or what specific format the returned feedback list contains. It's minimally viable but has clear gaps.
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?
With 0% schema description coverage, the description provides meaningful semantic context for both parameters: work_summary is explained as 'AI完成的工作内容汇报' (AI's work completion report) and timeout_seconds as '对话框超时时间' (dialog timeout time) with default value context. This compensates well for the lack of schema descriptions.
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 purpose as '收集用户反馈的交互式工具' (collect user feedback interactive tool) and specifies that AI can report completed work while users can provide text and/or image feedback. This is a specific verb+resource combination, though it doesn't explicitly differentiate from sibling tools like get_image_info or pick_image.
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 implies usage context ('AI可以汇报完成的工作内容' - AI can report completed work content) and mentions the interactive dialog nature, but provides no explicit guidance on when to use this tool versus alternatives or any exclusion criteria. The usage is implied rather than explicitly stated.
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/keizman/mcp-feedforward'
If you have feedback or need assistance with the MCP directory API, please join our Discord server