Skip to main content
Glama
small-tou

MCP Test Server

by small-tou

Server Quality Checklist

50%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: add_user and search_users handle user management, calculate performs mathematical operations, and create_todo manages tasks. There is no overlap or ambiguity between these domains, making tool selection straightforward.

    Naming Consistency4/5

    Three tools follow a consistent verb_noun pattern (add_user, create_todo, search_users), but 'calculate' deviates by using only a verb without a noun. This minor inconsistency slightly reduces predictability, though the naming remains readable and functional.

    Tool Count3/5

    With only 4 tools, the server feels thin and under-scoped for a general 'Test Server' purpose, lacking coverage in areas like updates, deletions, or broader operations. While each tool is distinct, the count is borderline low for typical server functionality.

    Completeness2/5

    The tool set is severely incomplete for user and task management domains. For users, there is no update_user or delete_user, and for todos, no get_todo, update_todo, or delete_todo. This creates significant gaps that will likely cause agent failures in common workflows.

  • Average 2.6/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
    • 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
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • 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.json to 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

  • Behavior1/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure but provides none. It doesn't indicate whether this is a read-only operation, what permissions might be required, whether results are paginated or limited, what happens with empty queries, or how results are sorted. For a search tool with zero annotation coverage, this represents a complete lack of behavioral context.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is extremely concise - just two Chinese characters. While this represents efficient communication, it's arguably under-specified rather than appropriately concise. However, given the scoring framework, it earns points for being front-loaded with the core purpose and having zero wasted words, though it lacks the structure of a more complete description.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's complexity (search operation with filtering), lack of annotations, and absence of an output schema, the description is insufficiently complete. It doesn't explain what the search returns, how results are formatted, whether there are limitations on search scope, or any error conditions. For a search tool that likely returns structured user data, this minimal description leaves critical gaps in understanding.

    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 description coverage is 100%, with both parameters ('query' and 'role') having descriptions in the schema. The tool description adds no additional parameter information beyond what's already documented in the schema. According to the scoring rules, when schema coverage is high (>80%), the baseline is 3 even with no parameter info in the description.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose2/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description '搜索用户' (Search users) states the general purpose but is vague and tautological - it essentially restates the tool name 'search_users' in Chinese. It doesn't specify what kind of search this performs (exact match, partial, fuzzy), what user attributes are searched, or how results are returned. While it indicates the verb (search) and resource (users), it lacks the specificity needed for clear agent understanding.

    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?

    There is no guidance on when to use this tool versus alternatives. The description doesn't mention any prerequisites, limitations, or comparison with sibling tools like 'add_user'. An agent wouldn't know if this is for finding existing users before adding new ones, or if there are specific scenarios where this search is appropriate versus other user-related operations.

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

  • Behavior1/5

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

    No annotations are provided, so the description carries full burden for behavioral disclosure. The description '执行数学计算' doesn't reveal any behavioral traits such as side effects, error handling, performance characteristics, or output format. It's a minimal statement that fails to inform the agent about how the tool behaves beyond its basic function.

    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 extremely concise with a single phrase '执行数学计算', which is front-loaded and wastes no words. It efficiently states the purpose without unnecessary elaboration, making it easy to parse quickly.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the complexity (4 parameters, no annotations, no output schema), the description is incomplete. It doesn't address how parameters interact (e.g., using 'expression' vs. 'operation' with 'a' and 'b'), what the tool returns, or any error conditions. For a tool with multiple input options and no structured output, more context is needed to guide effective use.

    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% description coverage, with clear parameter descriptions (e.g., '第一个数字' for 'a', '数学表达式' for 'expression'). The description adds no additional meaning beyond what the schema provides, as it doesn't explain parameter relationships, constraints, or usage examples. Baseline score of 3 is appropriate since the schema does the heavy lifting.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose3/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description '执行数学计算' (perform mathematical calculation) states a general purpose but is vague. It doesn't specify what kind of calculations, what resources are involved, or how it differs from potential alternatives. While it indicates the domain (mathematics), it lacks specificity about scope or method.

    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 on when to use this tool versus alternatives. The description doesn't mention prerequisites, constraints, or comparison with sibling tools (e.g., add_user, create_todo, search_users), which are unrelated but highlight the lack of context. Usage is implied only by the general purpose.

    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 of behavioral disclosure. '创建待办事项' implies a write operation (creation), but it doesn't disclose any behavioral traits such as permissions required, whether it's idempotent, error handling, or what happens on success/failure. This is a significant gap for a mutation tool with zero annotation coverage.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single phrase '创建待办事项', which is highly concise and front-loaded with the core action. It wastes no words, though it could benefit from slightly more context to improve clarity without sacrificing brevity.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the complexity of a creation tool with no annotations and no output schema, the description is incomplete. It doesn't explain what the tool returns, error conditions, or any behavioral context, making it inadequate for an agent to fully understand how to use this tool effectively.

    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 description adds no meaning beyond what the input schema provides. Schema description coverage is 100%, with clear documentation for both parameters ('title' and 'userId'), so the baseline score of 3 is appropriate as the schema handles the parameter semantics adequately without additional value from the description.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose3/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description '创建待办事项' (Create todo) states a clear verb+resource combination, indicating it creates a todo item. However, it doesn't distinguish this tool from potential siblings like 'add_user' or 'calculate' beyond the obvious domain difference, and it lacks specificity about what kind of todo system or context it operates in.

    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?

    The description provides no guidance on when to use this tool versus alternatives. There are no explicit instructions on prerequisites, context, or comparisons to sibling tools like 'add_user' or 'search_users', leaving the agent to infer usage based solely on the tool name and parameters.

    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?

    With no annotations provided, the description carries full burden for behavioral disclosure. '添加新用户' implies a write/mutation operation, but it doesn't specify permissions required, whether the operation is idempotent, what happens on duplicate emails, or error conditions. This leaves significant gaps for a tool that creates users.

    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 extremely concise - a single phrase that directly states the tool's purpose without any unnecessary words. It's front-loaded and wastes no space, though this conciseness comes at the cost of completeness.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a user creation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what the tool returns, what permissions are needed, how conflicts are handled, or other important behavioral aspects that an agent needs to use this tool effectively.

    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?

    Schema description coverage is 100%, with all parameters (email, name, role) well-documented in the schema itself. The description adds no additional parameter information beyond what's in the schema, so it meets the baseline for adequate coverage without adding value.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description '添加新用户' (Add new user) clearly states the verb ('add') and resource ('user'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'search_users' or 'create_todo', which would require more specific context about what distinguishes user creation from other operations.

    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?

    The description provides no guidance on when to use this tool versus alternatives like 'search_users' or other sibling tools. There's no mention of prerequisites, typical use cases, or exclusions, leaving the agent to infer usage from the tool name alone.

    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

mcp-test MCP server

Copy to your README.md:

Score Badge

mcp-test MCP server

Copy to your README.md:

Latest Blog Posts

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/small-tou/mcp-test'

If you have feedback or need assistance with the MCP directory API, please join our Discord server