RTBlint
Server Details
Validate OpenRTB bid requests and responses against IAB specs. ARTF, Rust core.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- aleksUIX/rtblint
- GitHub Stars
- 1
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 4.3/5 across 6 of 6 tools scored.
Each tool targets a distinct resource and action: capability discovery, version listing, and validation of request/response for both ARTF and OpenRTB. The request/response pairs are clearly separated by the 'request' vs 'response' suffix, and the two protocols are distinct (ARTF vs OpenRTB). No two tools have overlapping purposes.
All tools follow a consistent verb_noun pattern: get_adcp_capabilities, list_openrtb_versions, validate_artf_request, validate_artf_response, validate_bid_request, validate_bid_response. The verbs (get, list, validate) and nouns are clear and uniform, with no mixed conventions.
The tool count of 6 is well within the optimal 3-15 range and perfectly scoped for a specialized validation server. Each tool serves a necessary role without redundancy or bloat.
The toolset covers the full lifecycle of ad validation: capability discovery (get_adcp_capabilities), version selection (list_openrtb_versions), and validation of both request and response payloads for both ARTF and OpenRTB. Cross-validation between bid request and response is also included, leaving no obvious gaps for the stated domain.
Available Tools
6 toolsget_adcp_capabilitiesARead-onlyIdempotentInspect
AdCP protocol discovery. Returns the AdCP releases this agent speaks and the bid-stream conformance metrics it computes. Call this first when wiring rtblint into an agentic buying pipeline: it declares the experimental measurement protocol and the metric ids (openrtb_error_count, openrtb_warning_count, openrtb_conformance_rate) that validate_bid_request and validate_bid_response produce. Part of the Ad Context Protocol (AdCP 3.1) specification.
| Name | Required | Description | Default |
|---|---|---|---|
| ext | No | Caller extension object. Accepted and ignored; declared so envelope fields do not trip strict request-wrapper validation. | |
| context | No | Caller-supplied context object. Echoed back unchanged in the response. | |
| protocols | No | Filter which per-protocol capability blocks are returned. Does not narrow supported_protocols, which declares what the agent implements. | |
| adcp_version | No | Release-precision AdCP version the caller pins (for example "3.1"). When the pin is not in supported_versions the call returns a VERSION_UNSUPPORTED error naming the releases that would work. When omitted, the highest supported release is served. | |
| idempotency_key | No | AdCP 3.1 carries an idempotency key on every task request, reads included. This agent has no mutating surface and no replay store, so the key is accepted and ignored rather than rejected as an unknown field. | |
| adcp_major_version | No | Deprecated in favour of adcp_version. AdCP major version the caller's payloads conform to. When omitted, assumes the highest supported major. |
Output Schema
| Name | Required | Description |
|---|---|---|
| status | Yes | |
| operator | No | |
| adcp_version | Yes | |
| supported_protocols | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds context beyond these by declaring the tool as 'experimental' measurement protocol, noting it is 'Part of the Ad Context Protocol (AdCP 3.1) specification,' and specifying which metric IDs it produces. This enriches the agent's understanding without contradicting the annotations.
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 three sentences: a one-line purpose, a when-to-use directive, and a protocol/spec note. It is front-loaded and every sentence contributes essential information without repetition or fluff.
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 rich output schema, full parameter documentation, and strong annotations, the description is complete enough. It explains the tool's role in the pipeline, names specific outputs, and identifies the protocol specification. However, it could briefly mention that the output schema details the return structure, but the output schema itself already covers that, so it earns a solid 4.
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 description coverage is 100%, so the baseline is 3. The description itself does not elaborate on parameter semantics beyond the schema; it mentions metric IDs in the context of output, not parameters. Since the schema already thoroughly documents all 6 parameters, the description adds no additional value here.
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 opens with 'AdCP protocol discovery' and clearly states it returns 'the AdCP releases this agent speaks and the bid-stream conformance metrics it computes.' This uses a specific verb (discovery/returns) and resource (AdCP releases/metrics), distinguishing it from sibling validation tools like validate_bid_request.
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?
The description explicitly directs when to use the tool: 'Call this first when wiring rtblint into an agentic buying pipeline.' It also links to sibling tools by naming the metrics produced by validate_bid_request and validate_bid_response. However, it does not explicitly state when not to use it or name an alternative for this discovery role, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_openrtb_versionsARead-onlyIdempotentInspect
List every OpenRTB version id this build can validate against, from 2.0 through the monthly 2.6 snapshots. Call this before pinning version on a validate_* tool.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| versions | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false. The description adds meaningful context by specifying the version range (2.0 through monthly 2.6 snapshots) and the build-specific nature of the list. This goes beyond the structured annotations without contradicting them.
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 two sentences: the first states the core function, the second provides usage guidance. It is front-loaded, with no filler or repetition. Every sentence 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?
For a simple list/discovery tool with no parameters, a clear output schema, and strong annotations, the description adequately covers what the tool does, when to use it, and the expected scope. There are no missing pieces that would hinder correct invocation.
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?
The tool has zero parameters, and the schema is empty. With a parameter count of 0, the baseline is 4; the description need not explain parameter meanings. It focuses on the purpose, which 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 identifies the action ('List every OpenRTB version id'), the resource (versions this build can validate against), and the scope (from 2.0 through monthly 2.6 snapshots). It also distinguishes this discovery tool from the validate_* siblings by framing it as a prerequisite for them.
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?
The description explicitly states when to use the tool: 'Call this before pinning version on a validate_* tool.' This provides clear context and establishes a relationship with the sibling tools. However, it does not explicitly state when not to use it or mention alternatives beyond the implicit validate_* family.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_artf_requestARead-onlyIdempotentInspect
Validate an ARTF (IAB Tech Lab Agentic Real Time Framework) RTBRequest envelope: required members, lifecycle and payload coherence, tmax plausibility, originator and applicable_intents enums, plus full OpenRTB validation of the bid request and bid response it carries. The carried payloads are protobuf JSON, so they are validated in that dialect.
| Name | Required | Description | Default |
|---|---|---|---|
| payload | Yes | The ARTF RTBRequest envelope as a raw JSON string. | |
| version | No | OpenRTB version id to validate against (default 2.6-202606). One of: 2.0, 2.1, 2.2, 2.3, 2.3.1, 2.4, 2.5, 2.6-202204, 2.6-202210, 2.6-202211, 2.6-202303, 2.6-202309, 2.6-202402, 2.6-202409, 2.6-202501, 2.6-202505, 2.6-202606, 3.0 |
Output Schema
| Name | Required | Description |
|---|---|---|
| valid | Yes | |
| issues | Yes | |
| version | Yes | |
| payload_type | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable behavioral context about what validation is performed (lifecycle, tmax plausibility, enums, full OpenRTB validation) and that payloads are treated as protobuf JSON. This goes beyond the annotations without contradicting them.
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 compact and front-loaded: the first sentence states the primary purpose and key validation areas, the second clarifies the protobuf JSON dialect. Every clause adds value with no redundancy or fluff, making it highly efficient.
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?
The description covers the main validation aspects thoroughly and is complemented by annotations and an output schema. It could be slightly more explicit about when to choose this over sibling tools, but for a validation tool with rich annotations and output schema, it is substantially complete.
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 description coverage is 100%, so baseline is 3. The description adds meaningful context for the payload parameter by explaining that carried payloads are protobuf JSON and validated in that dialect, and that both the bid request and bid response inside the envelope are fully validated. This goes beyond the schema's simple field descriptions.
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 uses a specific verb ('Validate') and names the exact resource ('ARTF RTBRequest envelope'), then enumerates the validation dimensions (required members, lifecycle, payload coherence, tmax plausibility, enums, OpenRTB validation). This clearly distinguishes it from sibling tools like validate_bid_request and validate_bid_response by focusing on the envelope and its carried payloads.
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?
The description makes clear it is for validating an ARTF RTBRequest envelope, including its carried bid request and bid response. It implies that standalone bid request/response validation should use sibling tools, but it does not explicitly state when-not-to-use or name alternatives. Context is clear but lacks explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_artf_responseARead-onlyIdempotentInspect
Validate an ARTF RTBResponse mutation set against the RTBRequest it answers: envelope id echo, declared intent against applicable_intents, operation and payload coherence, and whether each semantic path (/imp/{id}, /imp/{id}/pmp/deals/{id}, /user/data/segment, /seatbid/{seat}/bid/{id}) resolves to something the auction actually carries. With apply=true the mutations are written into the payloads and revalidated, reporting the OpenRTB findings the mutations introduced. Call this before proposing mutations to an orchestrator.
| Name | Required | Description | Default |
|---|---|---|---|
| apply | No | Apply the mutations and revalidate the result (default false). Returns the mutated payloads and the findings the mutations introduced, with pre-existing findings filtered out. | |
| payload | Yes | The ARTF RTBResponse as a raw JSON string. | |
| version | No | OpenRTB version id to validate against (default 2.6-202606). One of: 2.0, 2.1, 2.2, 2.3, 2.3.1, 2.4, 2.5, 2.6-202204, 2.6-202210, 2.6-202211, 2.6-202303, 2.6-202309, 2.6-202402, 2.6-202409, 2.6-202501, 2.6-202505, 2.6-202606, 3.0 | |
| rtb_request | Yes | The ARTF RTBRequest envelope this response answers, as a raw JSON string. Required: a mutation is only meaningful relative to the auction it targets. |
Output Schema
| Name | Required | Description |
|---|---|---|
| valid | Yes | |
| issues | Yes | |
| applied | Yes | |
| version | Yes | |
| application | No | |
| payload_type | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds valuable context about apply=true causing mutations to be written and revalidated, reporting introduced findings, which goes beyond the annotations without contradicting them.
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 dense but well-structured, front-loaded with the primary purpose followed by specific validation checks, conditional behavior, and usage guidance. It's slightly long but every sentence adds meaningful information without redundancy.
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?
With an output schema present and full parameter coverage, the description sufficiently covers the tool's purpose, usage context, conditional apply behavior, and the specific validation paths. It's complete for an agent to understand when and how to invoke it, though slightly more detail on return structure could be added.
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%, so all parameters are described in the schema. The description adds context about the validation logic and the relationship between payload and rtb_request, but doesn't provide additional parameter-level meaning beyond what the schema already gives, so it stays at baseline.
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 validates an ARTF RTBResponse mutation set against its RTBRequest, listing specific checks like envelope id echo and semantic path resolution. It distinguishes itself from sibling validators by focusing on mutation sets and referencing the orchestrator use case.
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?
It explicitly says 'Call this before proposing mutations to an orchestrator,' giving a clear when-to-use directive. The specific focus on ARTF RTBResponse mutation sets implies when this is appropriate versus other validators, though it doesn't explicitly exclude alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_bid_requestARead-onlyIdempotentInspect
Validate an OpenRTB 2.x bid request JSON payload against a tracked spec version. Returns structured issues with rule ids, severities, and JSON paths.
| Name | Required | Description | Default |
|---|---|---|---|
| dialect | No | JSON dialect the payload is written in. spec-json (default) types flag fields such as imp.secure, regs.coppa and pmp.private_auction as integers, the way the OpenRTB specification does. proto-json follows the IAB OpenRTB protobuf schema, which declares 28 of those fields bool, so true/false is correct there and an integer is the error. Use proto-json for anything that came off a gRPC bidstream integration. | |
| payload | Yes | The OpenRTB bid request as a raw JSON string. | |
| profile | No | Exchange profile applied on top of the spec. spec (default) is the specification only. google-ab is Google Authorized Buyers OpenRTB: at=3 (FIXED_PRICE) is a valid auction type, and each Imp must carry ext.billing_id. | |
| version | No | OpenRTB version id to validate against (default 2.6-202606). One of: 2.0, 2.1, 2.2, 2.3, 2.3.1, 2.4, 2.5, 2.6-202204, 2.6-202210, 2.6-202211, 2.6-202303, 2.6-202309, 2.6-202402, 2.6-202409, 2.6-202501, 2.6-202505, 2.6-202606, 3.0 |
Output Schema
| Name | Required | Description |
|---|---|---|
| valid | Yes | True when the payload has zero spec errors. |
| issues | Yes | |
| dialect | No | |
| profile | No | |
| version | Yes | |
| payload_type | Yes | |
| cross_validated | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, idempotent, non-destructive behavior, so the bar is lowered. The description adds value by disclosing the return structure (issues with rule ids, severities, JSON paths), which is not present in annotations. It does not contradict annotations and provides useful context beyond the safety profile.
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 two sentences, front-loaded with the verb and resource, and the second sentence adds a precise return-value detail. Every word contributes; no redundancy or fluff.
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 rich annotations, detailed parameter schema (100% coverage), and presence of an output schema, the description is complete enough for an agent to select and invoke the tool. It covers purpose, return format, and the version-scoped nature without unnecessary elaboration.
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 description coverage is 100%, so the schema already fully documents all parameters including their enums, defaults, and specific meanings. The tool description adds no additional parameter semantics, so it stays at baseline 3 as calibrated by the rubric.
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 validates an OpenRTB 2.x bid request JSON payload against a tracked spec version, and explicitly describes the return format (structured issues with rule ids, severities, JSON paths). This distinguishes it from sibling tools like validate_bid_response and validate_artf_request by focusing on bid requests.
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?
Usage context is implied rather than explicit: the description implies it's for bid request validation, but it doesn't explicitly state when to use it over alternatives like validate_bid_response or validate_artf_request, nor does it mention any exclusions or prerequisites. The schema provides some guidance via version and dialect descriptions, but the tool description itself lacks explicit when/when-not guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
validate_bid_responseARead-onlyIdempotentInspect
Validate an OpenRTB 2.x bid response JSON payload against a tracked spec version. Optionally cross-validate it against the originating bid request (impid, mtype, adm markup, dealid, seat, and currency coherence). Returns structured issues with rule ids, severities, and JSON paths.
| Name | Required | Description | Default |
|---|---|---|---|
| dialect | No | JSON dialect the payload is written in. spec-json (default) types flag fields such as imp.secure, regs.coppa and pmp.private_auction as integers, the way the OpenRTB specification does. proto-json follows the IAB OpenRTB protobuf schema, which declares 28 of those fields bool, so true/false is correct there and an integer is the error. Use proto-json for anything that came off a gRPC bidstream integration. | |
| payload | Yes | The OpenRTB bid response as a raw JSON string. | |
| profile | No | Exchange profile applied on top of the spec. spec (default) is the specification only. google-ab is Google Authorized Buyers OpenRTB: at=3 (FIXED_PRICE) is a valid auction type, and each Imp must carry ext.billing_id. | |
| version | No | OpenRTB version id to validate against (default 2.6-202606). One of: 2.0, 2.1, 2.2, 2.3, 2.3.1, 2.4, 2.5, 2.6-202204, 2.6-202210, 2.6-202211, 2.6-202303, 2.6-202309, 2.6-202402, 2.6-202409, 2.6-202501, 2.6-202505, 2.6-202606, 3.0 | |
| bid_request | No | Optional: the originating OpenRTB bid request as a raw JSON string. When supplied, every bid is also cross-checked against the Imp it references. |
Output Schema
| Name | Required | Description |
|---|---|---|
| valid | Yes | True when the payload has zero spec errors. |
| issues | Yes | |
| dialect | No | |
| profile | No | |
| version | Yes | |
| payload_type | Yes | |
| cross_validated | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds valuable behavioral context beyond those: it specifies what cross-validation checks (impid, mtype, adm markup, dealid, seat, and currency coherence), that it returns structured issues with rule ids, severities, and JSON paths, and that dialect/profile affect validation. This goes beyond the annotation baseline and provides genuine transparency.
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 two-sentence description is front-loaded with the core validation purpose, then includes the optional cross-validation and output format. Every sentence earns its place, with no redundancy or fluff. It is concise while remaining informative.
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 moderate complexity (5 params, optional bid_request cross-validation) and the presence of a full output schema plus rich annotations, the description covers purpose, optional behavior, and return structure without needing to repeat schema details. It is complete for an agent to select and invoke correctly.
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 description coverage is 100%, so the baseline is 3. The description adds extra meaning for the bid_request parameter by listing the specific fields cross-validated, which is not present in the schema description. It also clarifies that 'tracked spec version' means version-specific validation possible. This lifts it above baseline.
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 it validates an OpenRTB bid response JSON payload against a tracked spec version, and mentions optional cross-validation against the originating bid request. This distinguishes it from sibling tools like validate_bid_request, which validate requests. The verb 'Validate' plus specific resource and version scope makes the purpose unambiguous.
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?
The description implies use for bid response validation and explains the optional cross-validation use case with a bid request. It does not explicitly name alternative tools like validate_bid_request or state when not to use this tool, but the context and sibling tool names make the intended usage clear. Thus it earns a 4 rather than 5.
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!
Related MCP Servers
- Flicense-qualityAmaintenanceVAST validation MCP server that checks ad tags against IAB VAST specifications, returning structured JSON with rule IDs, XPath locations, and spec references.16
- Flicense-qualityBmaintenanceValidates OpenAPI documents, JSON Schemas, and JSON payloads. Also compares OpenAPI specs and displays breaking changes.
- AlicenseAqualityAmaintenanceValidates AI-generated artifacts (JSON, API responses, SQL) against a contract and returns a verdict.1461MIT
- AlicenseAqualityDmaintenanceValidates electronic invoices (XRechnung, ZUGFeRD, Factur-X, Peppol BIS, etc.) against authority-pinned rules and explains failures.222MIT