Razi Web Tools
Server Details
Web and URL utilities over MCP: shorten URLs, screenshot pages, read page metadata, encode URLs.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool has a clearly distinct primary purpose: encoding/decoding, metadata extraction, logo extraction, screenshot capture, and link shortening. The two fetch tools explicitly cross-reference each other to prevent confusion despite overlapping metadata.
All tool names follow a consistent snake_case verb_noun pattern (decode_url, encode_url, fetch_page_metadata, fetch_site_logo, screenshot_url, shorten_url). No mixed naming styles or vague action-only names.
Six tools is a reasonable, focused set for a web utility server, covering URL manipulation, page inspection, and short links without bloat. Each tool adds a distinct capability.
The main use cases are covered: URL encode/decode, page metadata, site logo, screenshot, and short-link creation. Minor gaps include no URL-expansion tool and a reference to upload_file that is not present, but these are not core to the apparent purpose.
Available Tools
6 toolsdecode_urlAInspect
Reverse percent-encoding with decodeURIComponent, turning %20-style escapes back into the characters they stand for. Returns JSON { decoded }. A malformed or truncated escape sequence is rejected with an error rather than passed through. Note that '+' is left as a literal plus, not converted to a space. For Base64 input use decode_base64; for a JWT use decode_jwt.
| Name | Required | Description | Default |
|---|---|---|---|
| encoded | Yes | A percent-encoded string, such as one query-string value taken from a URL. Every %XX sequence must be well formed UTF-8 or the call fails. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and delivers: it discloses the return shape ('Returns JSON { decoded }'), specifies error behavior for malformed or truncated escapes, and documents the literal-plus behavior. This goes well beyond a bare function statement and prepares an agent for failure modes.
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?
Four sentences, each earning its place: operation, return shape, error behavior, plus-handling caveat, and alternative routing. The primary action is front-loaded, and there is no redundancy with the input schema.
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 single-parameter pure function, this is complete: it states what the tool does, what it returns, how it fails, an important edge-case, and which sibling tools cover related but different encodings. No output schema is provided, but the description supplies the return shape itself.
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 the 'encoded' parameter, so the schema already documents the input type and UTF-8 requirement, giving a baseline of 3. The description adds meaningful context beyond the schema by explaining the error condition for malformed escapes and the '+' handling decision, raising it to a 4.
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 precise, specific action: 'Reverse percent-encoding with decodeURIComponent', naming the exact resource (percent-encoded strings) and the transformation applied. It also distinguishes this tool from other decode families by explicitly routing Base64 and JWT inputs to different tools, removing any ambiguity.
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 input expectations (percent-encoded strings) and explicitly names alternatives for other input types: 'For Base64 input use decode_base64; for a JWT use decode_jwt.' It also flags an important nuance—'+' is not converted to a space—which helps the agent decide when historical form-encoding behavior is needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
encode_urlAInspect
Percent-encode a string with encodeURIComponent so reserved characters survive transport inside a URL. Returns JSON { encoded }. It escapes the structural characters too — : / ? # & = all become %XX — so it is for a single query-string value or path segment, NOT for a whole address you still want to be clickable. This is escaping for URLs only; to make text safe for JSON, headers or data URIs use encode_base64 instead. Reverse it with decode_url.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The value to percent-encode, typically one query-string value or path segment. Everything outside A-Z a-z 0-9 - _ . ! ~ * ' ( ) is escaped, including slashes and colons. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, and it delivers: it discloses the escaping algorithm (encodeURIComponent), that structural characters like : / ? # & = are escaped, and the return shape JSON { encoded }. It also clarifies the practical effect on a whole address, which is the key gotcha.
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?
Every sentence earns its place: definition, return format, the whole-address caveat, the alternative tool, and the decoding counterpart. The main action is front-loaded and there is no fluff or repetition beyond the necessary emphasis.
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 one-parameter pure function with no annotations and no output schema, the description is fully complete: it states purpose, scope, behavior, return format, alternatives, and reverse operation. Nothing an agent needs to decide or invoke correctly is missing.
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?
Even though the schema already covers the parameter 100%, the description adds crucial meaning beyond the schema by clarifying that the 'url' parameter is not a real URL but a value/segment. It also explains the escaping coverage of the parameter, reinforcing and extending the schema's 'Everything outside...' note with concrete structural characters.
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: 'Percent-encode a string with encodeURIComponent' and states the purpose (so reserved characters survive transport inside a URL). It also distinguishes from siblings by noting the encoded output is for a single value/segment, not a whole clickable address, and names decode_url as the reverse.
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 ('for a single query-string value or path segment') and when not to ('NOT for a whole address you still want to be clickable'). It also gives an alternative for other contexts ('use encode_base64 instead' for JSON, headers, or data URIs) and points to the sibling decode_url for reversal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_page_metadataAInspect
Read a web page's metadata without downloading any images: title, description, siteName, canonical URL, language, theme colour, generator, RSS/Atom feeds, and the full OpenGraph and Twitter card tag sets. Also returns finalUrl, the address after redirects, which is how you resolve where a domain actually points. This is the fast, cheap counterpart to fetch_site_logo: it does one page fetch and no image work. Use fetch_site_logo instead when the caller wants a logo, favicon or icon. It reads the served HTML only — it runs no JavaScript, so a client-rendered page may expose little, and it does not capture how the page looks (use screenshot_url for that). Results are cached for 24 hours, and the endpoint allows 20 calls per minute per IP.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The page to read, e.g. https://stripe.com/pricing. A bare domain is accepted and assumed to be https. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure, and it does so thoroughly: no image downloads, no JavaScript execution, client-rendered pages may expose little, results cached for 24 hours, and a rate limit of 20 calls per minute per IP. It also surfaces the redirect-resolving finalUrl behavior, adding meaningful operational context beyond 'read metadata'.
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 every sentence earns its place: capability, key return value, relationship to siblings, when to choose alternatives, technical limitations, caching, and rate limits. It is front-loaded with the primary purpose and wastes no 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?
For a single-parameter tool with no output schema and no annotations, the description is remarkably complete: it lists the returned metadata, the redirect behavior, the no-JS limitation, the caching policy, the rate limit, and the correct alternative tools. An agent has enough context to select, invoke, and interpret the result 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 schema already fully documents the single url parameter including the bare-domain and https-assumption behavior. The description adds no additional parameter-specific semantics, so the 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 opens with a specific verb and resource: 'Read a web page's metadata without downloading any images', then enumerates exactly what metadata is returned (title, description, siteName, canonical URL, language, theme colour, generator, feeds, OpenGraph and Twitter tags). It also clearly differentiates itself from sibling tools by naming fetch_site_logo and screenshot_url as the alternatives for logo and visual appearance.
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 explicit routing guidance: 'Use fetch_site_logo instead when the caller wants a logo, favicon or icon' and 'use screenshot_url for that' regarding visual appearance. It also frames this tool as the 'fast, cheap counterpart' for metadata-only needs, making the selection criteria clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_site_logoAInspect
Get a company's logo from its website URL. Reads the web app manifest, apple-touch-icons, declared favicons, OpenGraph/Twitter images and /favicon.ico, then downloads every candidate and measures its real dimensions — declared sizes attributes are frequently wrong, so ranking uses the measurement rather than the claim. Returns logo (the best candidate) and icons (all candidates, best first; real icon assets deliberately outrank social share images, which are usually a wide marketing banner rather than a logo). Each candidate is { url, source, width, height, format, bytes, rehostedUrl? }. Candidates the site declares but that cannot be fetched are still returned, carrying an error field — that is what makes this useful for auditing your own site's icons. SVG logos carry no width/height because they are not rasterised. Page metadata (title, description, OpenGraph, ...) is included too, so there is no need to also call fetch_page_metadata. Use that one instead if you do NOT need the logo: it skips the image downloads entirely and is much faster. Results are cached for 24 hours, and the endpoint allows 20 calls per minute per IP.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The website to inspect, e.g. https://stripe.com. A bare domain is accepted and assumed to be https. | |
| rehost | No | Copy the top candidates to razi.pro's CDN and expose them as `rehostedUrl` (default true). Prefer these for downloading or embedding: many origins block hotlinking or omit CORS headers, so the original URL can fail in a browser. Set false to skip the copy and get origin URLs only. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosing behavior, and it does so thoroughly: it downloads and measures candidates, ignores possibly-wrong declared sizes, returns unfetchable candidates with an error field, handles SVG without dimensions, includes page metadata, caches results for 24 hours, and enforces a rate limit. This level of detail is exceptional for a tool without structured 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 dense but every sentence adds information an agent needs: what is fetched, how ranking works, return shape, error behavior, SVG caveat, metadata inclusion, sibling alternative, caching, and rate limits. It is front-loaded with the core purpose, and there is no filler 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?
The tool has no output schema and no annotations, yet the description fully compensates by specifying the return object structure, candidate fields, ordering, error semantics, and rate-limit/caching behavior. For a two-parameter tool with rich output behavior, this is complete enough for an agent to invoke it correctly and interpret results.
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 baseline is 3, but the description adds meaningful guidance beyond the schema: it explains why rehosted URLs are preferred (hotlink blocking and CORS issues), confirms the default, and describes the trade-off of setting rehost to false. This pushes it above baseline, though the schema already documents the mechanics of both parameters well.
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: 'Get a company's logo from its website URL.' It clearly differentiates itself from fetch_page_metadata, one of its sibling tools, by stating what this tool uniquely does (image candidate discovery and measurement) and what the sibling does instead.
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 names fetch_page_metadata as the alternative to use when the logo is not needed, explains why it is faster, and notes that fetch_site_logo already includes page metadata so callers do not need both. This gives an agent a clear decision rule.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
screenshot_urlAInspect
Capture a screenshot of any public web page, rendered in a real headless browser so JavaScript, web fonts and lazy-loaded images all appear. Returns JSON with a hosted image URL on razi.pro's CDN — not image bytes: { url, width, height, format, bytes, cached, source }. Public pages only: every capture runs in a fresh browser with no cookies or credentials, so anything behind a login is unreachable. Identical requests are cached for 7 days and return the same image (cached: true), so this cannot be used to poll a page for changes. If source is "thumbio" the renderer was unavailable and a fallback provider produced the image, which ignores the fullPage, format, darkMode and delayMs options. This is the most expensive call on the platform: it holds a whole browser worker for the duration of the render, and a cold page can take tens of seconds. Limited to 10 captures per minute and 100 per day per IP.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The page to capture. Must be publicly reachable over http(s). | |
| width | No | Viewport width in pixels (200-3840, default 1280) | |
| format | No | Image format (default webp) | |
| height | No | Viewport height in pixels (200-4320, default 800). Ignored when fullPage is true. | |
| delayMs | No | Extra wait after load, in milliseconds (max 5000). Use for pages with entrance animations or slow client-side rendering. | |
| darkMode | No | Render with prefers-color-scheme: dark. Has no effect on sites that do not implement a dark theme. | |
| fullPage | No | Capture the entire scrollable page rather than just the viewport. Pages taller than 12000px are truncated at 12000px, which is a browser encoding limit, so a very long article returns only its top portion. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description fully discloses behavioral traits: fresh browser with no cookies/credentials, 7-day caching, fallback to 'thumbio' when the renderer is unavailable, the high cost of holding a browser worker, and rate limits (10/min, 100/day per IP). This goes well beyond what annotations would cover.
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?
While the description is detailed, every sentence carries essential information—constraints, side effects, or practical tips. No fluff or redundancy; the structure flows logically from the core action to limitations and edge cases.
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?
Even without an output schema, the description specifies the return format (JSON with url, width, height, format, bytes, cached, source). It also covers key edge cases like page truncation and dark mode limitations, so an agent has all necessary context to invoke and interpret 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?
Every parameter is described with concrete semantics: url requires public http(s), width/height have ranges and defaults, format is an enum, delayMs explains its purpose for animations, darkMode notes its effect depends on site implementation, and fullPage explains the 12000px truncation. The 100% schema coverage is fully leveraged with meaningful context.
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 'Capture a screenshot of any public web page', naming a specific action and resource. It clearly distinguishes this from URL utilities like decode/encode or metadata fetching, making the tool's purpose unambiguous even without sibling comparisons.
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?
Explicit guidance is given on when not to use the tool: 'cannot be used to poll a page for changes' and 'public pages only... anything behind a login is unreachable'. It also offers usage tips like using delayMs for animations and notes the 12000px truncation for fullPage, giving practical direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
shorten_urlAInspect
Create a permanent razi.pro short link that redirects to a long URL, and count its clicks. Returns JSON { code, shortUrl }. The link does not expire and cannot be edited or deleted through this API. Only http and https targets are accepted. This shortens an existing address; it does not host anything — use upload_file to get a URL for a file first. 30 links per hour per IP.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The absolute destination URL to redirect to, including the scheme. Only http:// and https:// are accepted; anything else is rejected with 400. | |
| customCode | No | Vanity code to use as the last path segment, e.g. 'launch' for razi.pro/launch. 3-32 characters, letters, digits, hyphen and underscore only. Fails with 409 if already taken and 400 if it collides with a reserved site path such as 'api', 'blog' or 'tools'. Omit to get a random 8-character code. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full behavioral burden and does so thoroughly: it discloses permanence ('does not expire'), irreversibility ('cannot be edited or deleted through this API'), accepted schemes, non-hosting behavior, rate limiting, and the JSON return shape. This is unusually complete behavioral disclosure for a short-link creation tool.
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?
Every sentence earns its place: purpose, return shape, permanence, constraints, non-hosting clarification, and rate limit. It is front-loaded with the core action and avoids 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?
Despite having no output schema and no annotations, the description covers return format, constraints, limitations, rate limiting, and an explicit alternative for the file-upload case. For a two-parameter tool whose schema already handles parameter details, nothing essential is missing.
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 input schema already fully documents url and customCode, including validation rules and conflict behavior. The description adds overall context but does not materially improve parameter-level understanding beyond what the schema provides, so the 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?
Description states a specific verb and resource: 'Create a permanent razi.pro short link that redirects to a long URL, and count its clicks.' This clearly differentiates from siblings like encode_url/decode_url and makes the tool's function 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?
Explicitly says this shortens an existing address and does not host anything, directing agents to 'use upload_file to get a URL for a file first.' It also gives a concrete rate limit ('30 links per hour per IP'), giving clear context for when this tool should and should not be used.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
- First observed
decode_url - First observed
encode_url - First observed
fetch_page_metadata - First observed
fetch_site_logo - First observed
screenshot_url - First observed
shorten_url
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Developer utility MCP: screenshots, PDFs, OG, QR, link preview, JSON validate, ShipPack.
MCP tools for AI agents: render URLs to image/PDF, check link health, convert HTML/CSV/JSON.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables fetching and extracting text from URLs, searching the web via DuckDuckGo and Yandex, and retrieving page links through MCP tools.2MIT
- AlicenseAqualityDmaintenanceProvides tools to fetch web content in HTML, JSON, text, or Markdown formats via MCP. Supports custom headers, length limits, and start index.4MIT
- AlicenseNot gradedqualityCmaintenanceEnables URL shortening and management through MCP, allowing creation of short links with optional tags and expiry, search, and stats.71MIT
- FlicenseNot gradedqualityDmaintenanceMCP server that provides web search scraping from DuckDuckGo (with Mojeek fallback) and URL content fetching as markdown/text or raw HTML.1-