graphql-dos-shield
Server Details
Cloudflare Workers MCP server: graphql-dos-shield
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- lazymac2x/graphql-dos-shield-api
- 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 3.6/5 across 3 of 3 tools scored.
Each tool has a distinct role: complexity_meter analyzes query complexity, query_rewriter modifies overly complex queries, and rate_limiter enforces rate limits. No functional overlap.
All tools use a consistent noun_noun pattern in snake_case (e.g., complexity_meter, query_rewriter, rate_limiter), maintaining uniformity across the set.
Three tools are well-scoped for a server focused on GraphQL DoS protection, covering analysis, rewriting, and rate limiting without being excessive or insufficient.
The tool set covers core DoS mitigation aspects, but lacks persistent rate limiting state or more granular control like query depth thresholds. Minor gap.
Available Tools
3 toolscomplexity_meterAInspect
Analyze GraphQL query complexity. Returns depth, field count, list multipliers, and a risk level (LOW/MEDIUM/HIGH/CRITICAL). CRITICAL means the query should be rejected.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | GraphQL query string to analyze |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses return values and the meaning of CRITICAL risk level. However, it does not explicitly state that the tool is read-only or non-destructive, though this is implied given its analysis nature.
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 and efficient: two sentences covering purpose and return values with example risk levels. No unnecessary words or repetition.
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 (single parameter, no output schema, no annotations), the description is largely complete. It explains the return structure and critical threshold. Minor omission: no mention of edge cases like invalid queries.
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% for a single parameter. The description adds minimal value beyond the schema's 'GraphQL query string to analyze' by focusing on output semantics rather than parameter details. Baseline of 3 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?
The description clearly states the tool's purpose: 'Analyze GraphQL query complexity.' It lists specific return values (depth, field count, list multipliers, risk level) and distinguishes from siblings (query_rewriter, rate_limiter) by focusing on analysis rather than modification or limiting.
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?
No explicit guidance on when or when not to use this tool versus alternatives. While the purpose is clear, the description does not provide context for selection among sibling tools or mention prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
query_rewriterAInspect
Text-level rewrite of an overly complex GraphQL query: strips excess nesting depth and truncates too many fields.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | GraphQL query to simplify | |
| max_depth | No | Max nesting depth (default: 3) | |
| max_fields | No | Max fields (default: 10) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Describes core behavior (strips nesting, truncates fields) but lacks details on side effects, error handling, or whether it modifies the query in place. No annotations are provided, so description carries full burden but is only partially adequate.
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-loads action and scope. No wasted words; every part 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?
Adequate for a simple tool with 3 parameters and no output schema, but lacks details on return value, mutation behavior, and edge cases. Could be more informative.
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 covers 100% of parameters with descriptions. Description adds context by linking parameters to tool behavior ('strips excess nesting depth' for max_depth, 'truncates too many fields' for max_fields), but does not add significant new meaning beyond schema.
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 the tool rewrites complex GraphQL queries by stripping excess nesting and truncating fields. Distinguishes from sibling tools complexity_meter and rate_limiter which have different purposes.
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?
Implies usage for overly complex queries but does not explicitly state when to use or when alternatives are better. No mention of when not to use or comparison with siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rate_limiterBInspect
Check and enforce rate limiting for a client. In-memory sliding window — state resets on cold start.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max requests per window (default: 100) | |
| client_id | Yes | Unique client identifier | |
| window_ms | No | Window in ms (default: 60000) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must fully disclose behavior. It mentions state resets on cold start, but does not specify what happens when rate limit is exceeded (e.g., error response, blocking). Key behavioral details are missing.
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 excess. First sentence states main purpose, second adds critical behavioral trait. Every word earns its place.
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?
No output schema and description does not explain return values or error conditions. For a rate limiter, missing details on response when limit is hit or exceeded. Sibling tools are unrelated, so no cross-context help.
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 100% coverage with descriptions for each parameter. The tool description adds no additional meaning beyond what schema provides, so baseline score of 3 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 checks and enforces rate limiting for a client, with specific mention of in-memory sliding window and state reset on cold start. This distinguishes it from sibling tools like complexity_meter and query_rewriter.
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?
No explicit guidance on when to use vs alternatives. While the purpose is clear, description does not mention when not to use or provide comparisons to sibling tools.
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!