netcafe-live-data
Server Details
Live data: weather, air quality, FX, CN/HK/US stocks, IP geo, domain, SSL, China reachability.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- mario03690/ai-netcafe
- GitHub Stars
- 0
- Server Listing
- ai-netcafe
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.1/5 across 11 of 11 tools scored. Lowest: 3.4/5.
Most tools are clearly separated by domain, but the cluster of domain-related tools (domain_check, ssl_check, china_reachability) could be confused by an agent looking for a generic 'check this domain' operation. The descriptions help clarify each one's specific focus, so overall ambiguity is low.
Naming conventions are mixed: some tools use a verb-first pattern (check_vulns, get_weather, transpile_sql), while others use a noun-first pattern (domain_check, stock_quote, ip_lookup). Verbs are also inconsistent (check, get, lookup, transpile), and some names are pure noun phrases (exchange_rate, package_info). This lack of a uniform pattern makes the set feel disjointed.
At 11 tools, the count is within a reasonable range and each tool has a distinct purpose. The broad scope makes the set feel somewhat unfocused, but there is no redundancy or excessive bloat.
The server intends to provide live data, but coverage is shallow within each category. For example, weather only gives current conditions and a short forecast, package tools only have info and vulnerabilities, and there is no historical data for stocks. The overall domain is vague, so significant gaps exist for a general-purpose live-data server.
Available Tools
11 toolscheck_vulnsCheck a package for known vulnerabilitiesARead-onlyIdempotentInspect
Query OSV.dev for known CVE/GHSA vulnerabilities affecting a package (optionally a specific version), and get the versions they were fixed in. Use it when reviewing dependencies or a lockfile. Covers npm, PyPI, crates.io, Go, Maven, NuGet and Packagist.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Package name. | |
| version | No | Exact version to check, e.g. "4.17.15". Omit to list all known vulns for the package. | |
| ecosystem | No | npm (default) | pypi | crates | go | maven | nuget | packagist |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds context beyond annotations by naming the external service (OSV.dev), listing supported ecosystems, and noting optional version filtering. This helps set expectations for network dependency and scope, even though rate limits or failure modes are not mentioned.
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 sentences, front-loaded with the action and output, then usage guidance and ecosystem list. No wasted words.
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 tool's core function, usage context, and scope. With an output schema present and good annotations, this 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 coverage is 100%, and the schema already explains the parameters clearly (e.g., version optional, ecosystem default). The description adds minimal extra meaning, mostly clarifying vulnerability types (CVE/GHSA) and that fixed versions are returned, which is more about output than parameters.
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: query OSV.dev for known CVE/GHSA vulnerabilities affecting a package, and get the versions they were fixed in. It uses a specific verb + resource, and is distinct from sibling tools like package_info.
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?
Provides clear usage context: 'Use it when reviewing dependencies or a lockfile.' It also states the supported ecosystems, giving practical guidance. However, it does not explicitly exclude alternatives (e.g., package_info) or mention when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
china_reachabilityTest if a URL is reachable from mainland ChinaARead-onlyIdempotentInspect
Fetch a URL from a real mainland-China network egress and report HTTP status, latency and China DNS resolution. Answers "is my site/API usable from China?" with a measurement instead of a guess — you cannot get this from a VPS abroad.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Full URL to test, e.g. https://example.com |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
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 behavioral context: it uses a real mainland-China egress and reports HTTP status, latency, and DNS resolution, which goes beyond the annotations. No contradiction is present.
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 a single, well-structured sentence that front-loads the core action and outputs, followed by a clear purpose statement. It contains no filler or redundant phrases; every segment contributes to understanding the tool.
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 available, return values need not be described. The description covers purpose, measurement method (real China egress), outputs (HTTP status, latency, DNS), and the primary use case. Minor caveats or interpretation guidance could enhance completeness, but the current context is sufficient for the tool's simplicity.
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 schema describes the only parameter 'url' as a 'Full URL to test, e.g. https://example.com', providing complete coverage. The description reinforces the URL's role but does not add new parameter-level semantics beyond what the schema already states, so the 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?
The description opens with a specific verb and resource: 'Fetch a URL from a real mainland-China network egress and report HTTP status, latency and China DNS resolution.' It clearly states the tool's purpose and distinguishes it from siblings by focusing on China-specific reachability, which no other sibling tool addresses.
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 frames the tool as answering 'is my site/API usable from China?' and notes 'you cannot get this from a VPS abroad,' which indicates the intended use case. It does not name alternative tools, but the context clearly implies when this tool is appropriate relative to other network-checking tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
domain_checkDomain availability / whoisARead-onlyIdempotentInspect
Check if a domain is registered via official RDAP: availability, registrar, created/expiry dates, nameservers.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | e.g. example.com |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds context by specifying the data source (official RDAP) and the returned fields, which goes beyond the annotations. There is no mention of rate limits or failure modes, but for a simple read-only tool this is sufficient, earning a 4.
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 a single, well-constructed sentence that front-loads the core purpose and lists the key outputs. It is extremely concise with no filler.
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 only one parameter and no nested objects, the description adequately covers the tool's purpose and behavior. An output schema exists, so return values need not be explained. It is complete for its simplicity, though it could mention error conditions for unsupported TLDs, which is a minor gap.
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% (single 'domain' parameter with a 'e.g. example.com' description). The tool description does not add parameter-specific details, so it meets the baseline of 3 without enriching the parameter understanding.
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?
Description specifies a clear action ('Check if a domain is registered') via a specific protocol (official RDAP) and lists the resource details returned (availability, registrar, dates, nameservers). This distinguishes it from sibling tools like ssl_check, which addresses a different aspect of domain inspection.
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 its use for domain registration checks but does not explicitly state when to use it instead of sibling tools like ssl_check. No exclusions or alternative guidance is provided, so usage is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
exchange_rateLive exchange ratesARead-onlyIdempotentInspect
Live currency exchange rate: one pair with conversion, or a major-currency table for a base currency.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Target currency code; omit for a table | |
| from | No | Base currency code, default USD | |
| amount | No | Amount to convert, default 1 |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool read-only and idempotent. The description adds behavioral context by explaining the two return modes (conversion vs. table) and that the data is 'live.' No contradiction with annotations is present.
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?
A single, neatly front-loaded sentence concisely conveys the tool's purpose and modes without waste or 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?
Given the presence of full schema descriptions, output schema, and safety annotations, the description adequately covers the tool's behavior. It explains both operational modes, which is sufficient for an agent to select and invoke the tool 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 coverage is 100%, so the schema already documents each parameter. The description reinforces the purpose of 'to' (omit for table) but adds no additional syntax, format, or edge-case information beyond what the schema provides.
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 function: providing live currency exchange rates with two modes—a single pair conversion or a table for a base currency. It distinguishes itself from sibling tools (weather, stock quotes, etc.) by its specific domain and scope.
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 provides clear context for when to use the tool (for live currency rates) and the two usage scenarios (pair conversion or base-currency table). It doesn't explicitly exclude alternatives, but sibling tools are obviously different domains, making the intended use clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_air_qualityLive air quality (AQI)ARead-onlyIdempotentInspect
Live air quality for any city: US/European AQI, PM2.5, PM10, ozone.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | city name, e.g. 北京 | |
| latitude | No | ||
| longitude | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds 'Live' to indicate real-time data and 'any city' to indicate broad geographic coverage, but it does not disclose data freshness, latency, or potential limitations. Given the annotations, this is adequate, though not rich.
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 a single, front-loaded sentence that immediately conveys the core function. No filler or redundancy. It earns its place by listing specific data types, which is 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 tool is simple with optional parameters and an output schema, but the description lacks guidance on how latitude/longitude interact with city, or whether city is sufficient. While the output schema may cover return values, the incomplete parameter semantics leave a gap in overall context.
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 only 33% (only 'city' has a description). The description mentions 'any city' but does not explain the purpose or usage of latitude/longitude parameters. Since the schema does not document them either, the description fails to compensate for the low coverage, leaving two parameters semantically opaque.
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 'Live air quality for any city: US/European AQI, PM2.5, PM10, ozone' clearly states the tool provides air quality data, specifies the metrics (AQI, PM2.5, PM10, ozone), and distinguishes it from siblings like get_weather. The verb 'get' in the name plus the descriptive resource makes the purpose immediately obvious.
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 this tool is used when the user needs air quality data, but it does not explicitly state when to use it over alternatives (e.g., get_weather) or mention any exclusions. No when-not-to-use guidance is provided, so it relies on the user to infer the appropriate context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_weatherGet current weatherARead-onlyIdempotentInspect
Current weather and short forecast for a city or coordinates. Works for Chinese cities too.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | No | Latitude (alternative to city). | |
| lon | No | Longitude (alternative to city). | |
| city | No | City name, e.g. "Shanghai" / "上海". Or pass lat/lon. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already disclose read-only and idempotent behavior, so the description does not need to repeat that. It adds valuable behavioral context beyond annotations: it states the output includes a 'short forecast' and that Chinese city names (including Chinese characters) are supported. This is more than the schema provides and helps the agent set expectations.
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 a single sentence that immediately conveys the primary function, input options, and a special capability. Every word earns its place, with no filler or repetition. Structure is optimal for quick agent comprehension.
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 read-only weather tool with 3 parameters, full schema coverage, annotations, and an output schema, the description is complete. It covers the core purpose, input modes, and a key localization feature. No additional behavior needs to be disclosed; any output details are handled by the output schema.
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% with detailed descriptions for each parameter (lat, lon, city), including an example with Chinese characters. The description adds only slight reinforcement by saying 'for a city or coordinates', but this is already evident from the schema. With high schema coverage, a baseline of 3 is appropriate; no additional parameter semantics are needed.
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 function with a specific verb and resource: returns current weather and a short forecast. It distinguishes from sibling tools (which focus on other domains like security, finance, domain info) by specifying weather for a city or coordinates. The added note about Chinese cities further clarifies scope.
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 gives clear context by specifying input options ('for a city or coordinates'), so an agent knows when to invoke it. It does not explicitly mention when not to use it or alternatives, but sibling tools are distinct enough that the purpose itself implies usage. No exclusions are stated, which is acceptable for a simple weather tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ip_lookupIP geolocationBRead-onlyIdempotentInspect
IP address geolocation and ISP: country, region, city, ISP, timezone.
| Name | Required | Description | Default |
|---|---|---|---|
| ip | No | IPv4/IPv6; omit for caller IP |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
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 well covered. The description adds the output fields (country, region, city, ISP, timezone), which provides some behavioral context about the return data. However, it does not disclose other traits like rate limits or error behavior, but the low complexity and existing annotations make this 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?
The description is a single, front-loaded sentence that lists the core output fields without any fluff or redundant explanations. Every word earns its place, 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?
For a simple read-only lookup with one optional parameter, an output schema, and clear annotations, the description is sufficient. It covers the purpose and key return values. The only gap is the lack of explicit usage context, but the simplicity of the tool makes this a minor omission.
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 schema description coverage is 100%, with the 'ip' parameter clearly documented as 'IPv4/IPv6; omit for caller IP'. The description adds no additional parameter semantics beyond what the schema already provides. Baseline 3 is appropriate given full schema coverage.
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 resource (IP address) and the function (geolocation and ISP), listing specific fields like country, region, city, and timezone. While it lacks an explicit verb, the name 'ip_lookup' and title 'IP geolocation' make the action clear. It distinguishes itself from sibling tools by focusing on IP-specific data.
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 provides no explicit guidance on when to use this tool versus alternatives, nor does it mention exclusions or prerequisites. The only usage hint ('omit for caller IP') appears in the schema, not the description. The purpose is implied but not directly stated as a use case.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
package_infoLook up a package (npm / PyPI / crates / Go)ARead-onlyIdempotentInspect
Latest version, license, repo, description, dependencies and weekly downloads for any public package. Use it before adding a dependency, or to check whether the version in a lockfile is current.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Package name, e.g. "react", "requests", "serde", "github.com/gin-gonic/gin". | |
| ecosystem | No | npm (default) | pypi | crates | go |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is known. The description adds valuable context about the scope ('any public package') and the kind of data returned, which goes beyond what annotations provide. No contradictions.
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 long, front-loaded with the primary action and key output fields. Every word serves a purpose, with no fluff or repetition of schema details.
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 low parameter count (2), full schema coverage, and presence of an output schema, the description is complete. It lists the main returned fields and gives practical usage context, so an agent has a full picture of what the tool does.
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 both parameters (name and ecosystem), so the schema already documents the parameters effectively. The description adds minimal parameter-specific meaning, but the baseline of 3 applies because no additional clarification is needed.
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 action ('Look up a package') and lists specific returned data fields (version, license, repo, description, dependencies, weekly downloads). This distinguishes it from sibling tools like ip_lookup or ssl_check, which focus on different domains.
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 provides explicit use cases: 'Use it before adding a dependency, or to check whether the version in a lockfile is current.' It does not mention when to avoid using it or name alternatives, but the context is clear enough for an agent to decide.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ssl_checkSSL certificate checkARead-onlyIdempotentInspect
Inspect the TLS certificate of a domain: issuer, validity window, days until expiry, trust status, SANs.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | e.g. example.com |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
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 the specific data fields returned but no additional behavioral context like rate limits or prerequisites. It does not contradict 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 one sentence, front-loaded with the action ('Inspect the TLS certificate of a domain') followed by a compact list of returned details. Every word earns its place, with no redundancy or filler.
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 read-only tool with one parameter and an output schema, the description adequately conveys purpose and result contents. It lacks explicit differentiation from sibling tools but is otherwise complete for the tool's complexity.
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 input schema provides a description and example for the single 'domain' parameter, giving 100% coverage. The description adds no extra parameter semantics beyond the schema, so it meets the baseline for full schema coverage.
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 starts with 'Inspect the TLS certificate of a domain', providing a specific verb and resource. It lists concrete outputs (issuer, validity window, days until expiry, trust status, SANs), making the tool's purpose unmistakable and distinct from sibling tools like domain_check.
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 usage for TLS certificate inspection but does not explicitly state when to use it over alternatives such as domain_check. No exclusion criteria or comparison to sibling tools is provided, leaving usage guidance implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
transpile_sqlTranslate SQL between dialectsARead-onlyIdempotentInspect
Convert a SQL statement from one dialect to another — mysql, postgres, sqlite, tsql, oracle, snowflake, bigquery, redshift, spark, hive, presto, trino, duckdb, clickhouse, databricks, doris, starrocks and more. Deterministic parser (sqlglot), not an LLM: the same input always produces the same output, and syntax errors come back with the exact line and column. Use it when migrating queries between databases or debugging dialect-specific syntax.
| Name | Required | Description | Default |
|---|---|---|---|
| sql | Yes | The SQL statement (or several, separated by semicolons). | |
| read | No | Source dialect, e.g. "mysql". Omit to auto-detect from generic SQL. | |
| write | Yes | Target dialect, e.g. "postgres", "bigquery", "doris". |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds rich behavioral context beyond the annotations: it reveals the tool is deterministic (sqlglot parser, same input -> same output) and provides exact line/column on syntax errors. This gives the agent useful expectations about reliability and error handling, complementing the readOnly/idempotent hints.
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 and front-loaded with the primary action. Every phrase earns its place: supported dialects, determinism, error reporting, and usage context. No redundant restating of the title.
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 complexity of dialect conversion, the description covers purpose, when to use, behavior, and error characteristics. An output schema exists, so return format is handled upstream. The description is fully sufficient for an agent to select and invoke the tool 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?
The input schema already provides 100% coverage: each parameter (sql, read, write) includes a description with examples and default behavior. The tool description itself does not add parameter-specific detail beyond what the schema states, so baseline 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 starts with a specific verb+resource: "Convert a SQL statement from one dialect to another" and gives an extensive list of supported dialects. This clearly distinguishes it from unrelated sibling tools (check_vulns, get_weather, etc.) which cover other domains.
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: "migrating queries between databases or debugging dialect-specific syntax." It does not explicitly state when not to use it or name alternatives, but the sibling tools are so unrelated that no confusion arises.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
what_can_you_doFind the right tool for a taskARead-onlyIdempotentInspect
Describe a task in plain language (any language) and get back exactly which tools on this server do it, with ready-to-run example calls — instead of reading the whole catalogue and guessing. Also returns multi-step recipes when a task needs several tools chained (invoices to a ledger, a bank statement reconciled, a messy CSV turned into a deliverable). Deterministic and free: it calls no model, costs nothing, and never runs out of quota. Call this FIRST when you are not sure what this server offers.
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | What you are trying to do, e.g. "reconcile a bank statement against my books" or "把一堆发票整理成能入账的表格" |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, and non-destructive. The description adds valuable operational traits beyond those: 'Deterministic and free,' 'calls no model,' 'costs nothing,' and 'never runs out of quota.' This is crucial context for an AI agent deciding whether to invoke it.
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 four sentences, each earning its place: core purpose, expanded capabilities, operational guarantees, and direct usage guidance. It is dense yet readable, with no filler or redundant repetition of schema information.
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 tool with one parameter and an existing output schema, the description covers all essential aspects: what it does, when to use it, behavior, and what it returns (tool names and example calls). The output schema handles return-value details, so no further explanation is needed.
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 schema description for 'task' is already 100% covered with a clear explanation and bilingual examples. The description adds extra meaning by stating 'any language' and showcasing complex multi-step tasks (invoices to a ledger, bank statement reconciled), which helps the agent understand the breadth of accepted input.
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 a specific verb ('get back') and resource ('which tools on this server do it'), with ready-to-run example calls. It distinguishes this meta-tool from the utility siblings by explaining it maps natural-language tasks to exactly the right tool, rather than performing a specific operation.
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 FIRST when you are not sure what this server offers' and contrasts with 'instead of reading the whole catalogue and guessing.' This gives both a clear when-to-use rule and an implied alternative (use the specific tool if you already know it).
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
- AlicenseAqualityBmaintenanceReal-time data API for AI Agents. 10 MCP tools covering A-share stock quotes, market overview, fund data, web search, news, weather, logistics tracking, and IP geolocation.10MIT

Ready APIsofficial
AlicenseNot gradedqualityCmaintenanceMCP tools for geo, email, phone, company, DNS, FX, equities, weather, tax, economics, and intelligence — streamable HTTP, one API key.MIT
dynamicfeed-mcpofficial
AlicenseNot gradedqualityBmaintenance62 live, cryptographically signed data tools for AI agents and robots: weather, natural hazards, flights, shipping, space, CVEs, sanctions, software versions, sea ice and more. Every datapoint carries source, licence, timestamp and an Ed25519 signature.13MIT
TickDB MCPofficial
AlicenseNot gradedqualityBmaintenanceUnified real-time & historical market data API for Forex, stocks (US/HK/A-share), crypto, indices & precious metals. Tick, order book depth & K-line via REST + WebSocket. AI-native: MCP server, Skill & CLI.685MIT
Your Connectors
Sign in to create a connector for this server.