Skip to main content
Glama
CSOAI-ORG

API Tester AI MCP

Server Quality Checklist

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

  • Disambiguation4/5

    Tools are mostly distinct: check_headers focuses on response headers, validate_response on status/body fields, generate_curl produces a curl command, and send_request builds (but may not actually send) an HTTP request. However, generate_curl and send_request both deal with constructing requests, which could cause confusion; the actual sending capability of send_request is ambiguous.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern with underscores: check_headers, generate_curl, send_request, validate_response. No mixing of styles.

    Tool Count4/5

    With 4 tools, the number is slightly on the low side but reasonable for a focused API testing server. Each tool serves a distinct purpose, and the count does not feel excessive or overly thin.

    Completeness3/5

    The set covers key API testing operations: analyzing headers, generating curl, validating responses, and building requests. However, send_request's description suggests it may not actually send the request, requiring an external library, which leaves a notable gap. Missing tools like a dedicated request sender or history management.

  • Average 3.4/5 across 4 of 4 tools scored. Lowest: 2.2/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 15 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • 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.

  • This repository includes a glama.json configuration file.

  • This server has been verified by its author.

  • 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

  • Behavior4/5

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

    No annotations provided, so description carries full burden. It thoroughly covers side effects (read-only, no side effects), authentication (no auth for basic, API key for higher tiers), rate limits (10/day free), error handling, idempotency, and data privacy. This is comprehensive and relevant, though some generic statements don't specifically tie to curl generation.

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

    Conciseness2/5

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

    The description is verbose with redundant sections (e.g., behavioral transparency stated twice). The 'When to use' and 'Behavior' paragraphs are copied from a different tool, adding irrelevant information. It could be significantly shortened and focused.

    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?

    Despite having an output schema, the description does not explain the output format (e.g., a string containing curl command). The mismatched usage guidance adds confusion. For a 5-parameter tool, more specific context about input formats and output shape is needed.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%. The 'Args' section provides generic descriptions like 'The method to analyze or process' without explaining that method is an HTTP verb, url is the endpoint, headers format, etc. This adds minimal value beyond parameter names.

    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?

    First sentence clearly states 'Generate a curl command from request parameters,' but the subsequent 'Behavior' and 'When to use' sections describe structured analysis/classification, which contradicts the tool's actual purpose. This mismatch undermines clarity.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines1/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The 'When to use' section suggests structured analysis/classification, which is irrelevant to curl generation. The 'When NOT to use' mentions real-time production decisions, also unrelated. No guidance on when to generate a curl vs. alternatives like send_request.

    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?

    Despite no annotations, the description offers a dedicated 'Behavioral Transparency' section covering side effects (read-only), authentication, rate limits, error handling, idempotency, and data privacy. This extensive detail exceeds typical transparency, though the read-only claim conflicts with the tool's name.

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

    Conciseness3/5

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

    The description is lengthy but well-structured with clear sections. Some redundancy exists (e.g., behavioral transparency repeats points from earlier), and the content could be more concise without losing key information.

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

    Completeness3/5

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

    The description covers behavior, usage, parameters, error handling, and privacy. However, the core identity conflict (send vs. read-only analysis) creates confusion, and the presence of an output schema is not mentioned. Complexity is moderate, but the inconsistency reduces overall completeness.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The 'Args' section lists parameters with generic descriptions like 'The method to analyze or process,' adding no specific meaning beyond the parameter names. Schema coverage is 0%, so the description should compensate, but it fails to provide useful semantics.

    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 name 'send_request' implies actual HTTP sending, but the description states 'actual sending requires urllib/requests' and 'generates structured output without modifying external systems.' This contradiction, along with a 'When to use' section referencing 'structured analysis or classification,' obscures the primary purpose.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description includes explicit 'When to use' and 'When NOT to use' sections, providing some guidance. However, the usage described (structured analysis) is inconsistent with the tool's name and does not differentiate from sibling tools like check_headers, generate_curl, or validate_response.

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

  • Behavior5/5

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

    Thoroughly covers all behavioral aspects: read-only, stateless, idempotent, rate limits, authentication, error handling, and data privacy. Since no annotations are provided, the description fully carries the burden and does so excellently.

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

    Conciseness3/5

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

    Well-structured with clear sections and front-loaded purpose, but there is significant redundancy between the 'Behavior' and 'Behavioral Transparency' sections. The 'Args' section is verbose without adding value.

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

    Completeness3/5

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

    Provides extensive behavioral context but is vague about the 'expectations' or 'frameworks' used for validation. Parameter meanings are under-explained. Output schema exists, so return values are not required, but overall completeness is average.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema coverage is 0%, but the 'Args' section provides only generic, repetitive descriptions like 'The status code to analyze or process,' adding no meaningful semantics beyond parameter names. The main description offers some context, but insufficiently.

    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 clearly states the tool validates API responses against expectations, using specific verbs and resources. It implicitly distinguishes from siblings like 'send_request' and 'check_headers' by focusing on validation, but does not explicitly differentiate.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    Explicit 'When to use' and 'When NOT to use' sections provide clear guidance on appropriate contexts, including a caution against real-time production use without human review. However, it does not directly compare to sibling tools.

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

  • Behavior5/5

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

    With no annotations provided, the description thoroughly explains behavior: read-only, stateless, idempotent, no auth for basic use, rate limits (10/day free, unlimited pro), error handling, and data privacy. This fully compensates for missing annotations.

    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 well-structured with clear sections (Behavior, When to use/not use, Args, Behavioral Transparency). It is front-loaded with the core purpose and every sentence adds value without unnecessary verbosity.

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

    Completeness5/5

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

    Given the complexity of security analysis and the presence of an output schema (not shown), the description covers all necessary context: side effects, authentication, rate limits, error handling, idempotency, and data privacy. It provides a complete picture for invocation.

    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 includes an 'Args' section that restates parameter names and types, but the descriptions ('the headers json to analyze or process', 'the api key to analyze or process') are vague and add little beyond the schema. Schema coverage is 0%, so some addition is needed, but the descriptions are minimal.

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

    Purpose5/5

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

    The description clearly states the tool analyzes HTTP response headers for security and best practices. It distinguishes itself from siblings like generate_curl, send_request, and validate_response by focusing on analysis rather than generation, sending, or validation.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides explicit 'When to use' and 'When NOT to use' sections. It guides the agent to use this tool for structured analysis and warns against real-time production decision-making without human review, effectively differentiating from siblings.

    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

api-tester-ai-mcp MCP server

Copy to your README.md:

Score Badge

api-tester-ai-mcp 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/CSOAI-ORG/api-tester-ai-mcp'

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