AnchoredIP
Server Details
Dedicated static outbound IPv4 over WireGuard. Free 7-day trial, no card, no sales call.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
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 8 of 8 tools scored. Lowest: 3.3/5.
Each tool targets a distinct aspect: tunnel provisioning/revocation, lease status/ordering/renewal/autorenew, plan listing, and DNS. There is no overlap in core actions, even renew_lease and set_autorenew are clearly manual vs. automatic controls.
Most tools follow a clear verb_noun pattern (create_tunnel, list_plans, order_lease, renew_lease, revoke_tunnel, set_autorenew, set_reverse_dns). The exception is 'lease_status', which is a noun phrase rather than a verb command, though it is readable and consistent enough not to cause confusion.
With 8 tools, the set is well-scoped for IP leasing management. It covers provisioning, lifecycle, billing, and DNS configuration without being bloated or thin.
Core workflows are covered: order, renew, autorenew, status, tunnels, and DNS. The main gap is the lack of a direct 'cancel lease' or 'delete lease' operation, though stopping autorenew and letting the lease lapse covers this to some extent. No listing of all leases is another minor omission.
Available Tools
8 toolscreate_tunnelAInspect
Provision a peer and return its WireGuard configuration. Source routing sends only traffic from the leased address through us and leaves the machine's default route alone — but it is written with wg-quick PostUp rules, so it runs on Linux under wg-quick and nowhere else. A graphical or mobile client reads it, finds no routes to install and fails to connect without logging anything. Choose full tunnel for those: it works everywhere but sends all of the machine's traffic through us.
| Name | Required | Description | Default |
|---|---|---|---|
| label | No | For the customer's own reference. | |
| transport | No | Defaults to wireguard. Use amneziawg where deep packet inspection blocks a plain WireGuard handshake; it needs an AmneziaWG client rather than wg-quick. | |
| access_token | Yes | Returned by order_lease. The only credential for a lease. | |
| routing_mode | No | Defaults to source. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses critical behavior: source routing is Linux-only due to wg-quick PostUp rules, and non-Linux clients fail silently without connecting. It also clarifies traffic flow for both modes, making side effects and limitations highly transparent.
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: purpose, source mode behavior, client failure mode, and full mode guidance. It is concise yet packs essential operational warnings 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?
For a tool with 4 params and no output schema, the description covers the return value (WireGuard config), routing semantics, platform limitations, and client compatibility. It provides sufficient operational context to use the tool correctly, making it complete for its 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?
Schema coverage is 100%, so the baseline is 3. The description adds substantial meaning beyond the schema for routing_mode by explaining performance tradeoffs and client compatibility, which is not present in the param's enum description. Other parameters are already well-described in the schema, so a 4 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 'Provision a peer and return its WireGuard configuration,' which names a specific verb, resource, and deliverable. This clearly distinguishes it from sibling tools like order_lease or revoke_tunnel, leaving no ambiguity about what the tool does.
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 guidance on choosing between routing modes, directly telling users to 'Choose full tunnel for those' when discussing graphical/mobile clients. It also explains why source routing is inappropriate for those clients, giving clear when-to-use and when-not-to-use context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lease_statusAInspect
Everything about one lease: whether it is active, which addresses it holds, its tunnels and when it renews.
| Name | Required | Description | Default |
|---|---|---|---|
| access_token | Yes | Returned by order_lease. The only credential for a lease. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of revealing behavior. It explains what information the tool returns (active status, addresses, tunnels, renewal time), which is useful context. However, it does not explicitly state whether the operation is read-only, whether any side effects occur, or what authentication requirements exist beyond the access_token parameter. This is a moderate amount of disclosure, but gaps remain.
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 efficiently conveys the tool's purpose and the key aspects of the returned data. It is front-loaded with 'Everything about one lease' and avoids any unnecessary words. Every word earns its place, making it a model of conciseness.
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 complexity (one parameter, no output schema), the description adequately covers what the tool does and what it returns. It enumerates the specific data points (active, addresses, tunnels, renews) without needing to detail an output format. It could be improved by explicitly stating that it is a read-only status lookup, but overall it is sufficiently complete for this 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 sole parameter access_token has 100% schema description coverage, so the schema already fully explains it. The tool description does not add further parameter-specific context, but given the high coverage, the baseline of 3 is appropriate. No additional semantic meaning 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 indicates this is a status/retrieval tool for a single lease, enumerating the specific aspects it covers (active, addresses, tunnels, renews). It distinguishes itself from sibling tools that perform actions like create or renew by implying a read/query operation. The lack of an explicit verb like 'get' keeps it from a 5, but the meaning is 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 usage when you need all details about a lease, and the sibling list (order_lease, renew_lease, create_tunnel) suggests this is the query counterpart. However, there is no explicit statement of when to use this tool versus alternatives or what conditions warrant it. The usage is easily inferred but not directly stated, so a 3 is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_plansAInspect
The published catalogue with live prices and which payment methods each plan accepts. Prices are never hardcoded; read them here.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable behavioral context by stating that prices are 'never hardcoded' and should be read from this tool, indicating live data. Without annotations, it covers the read-only nature implicitly, but it does not disclose rate limits, response pagination, or exact return structure.
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 short sentences that immediately convey the core purpose without any redundant information. It is front-loaded with the main idea and every phrase 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 zero-parameter list tool, the description covers the essential output: plans, prices, and payment methods. The lack of an output schema means the exact response format is unspecified, but the description is sufficient for a simple catalogue.
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, so the description has no obligation to explain parameter semantics. The baseline of 4 applies because there is nothing for the description to add beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as a catalogue of plans with live prices and acceptable payment methods, which distinguishes it from sibling tools that manage tunnels or leases. While the verb is implicit ('catalogue' implies listing), it is specific and 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 phrase 'read them here' implies this tool is the source for plan pricing and details, giving some usage direction. However, it does not explicitly mention alternatives or when not to use it, such as referencing lease_status for active leases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
order_leaseAInspect
Place an order. The trial plan is free and activates immediately; paid plans return payment details and stay pending until settled. No account or card is needed to order. A second trial for the same billing email is refused — order a paid plan instead, which needs no approval.
| Name | Required | Description | Default |
|---|---|---|---|
| plan | Yes | Slug from list_plans. | |
| country | Yes | ISO 3166-1 alpha-2. | |
| billing_email | Yes | ||
| organization_name | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does well: it discloses activation behavior (trial immediate, paid pending), return of payment details, lack of auth requirements, and the second-trial refusal rule. This goes far beyond a generic 'place an order' statement.
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?
Three sentences, each earning its place: the first states the action, the second explains behavior, the third gives a key constraint. Front-loaded with 'Place an order' and no redundant 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 4-parameter tool with no output schema, the description covers key behavioral aspects: trial vs paid outcomes, lack of required account/card, and the restriction on second trials. It doesn't detail return values fully but mentions payment details for paid plans, and likely relies on sibling tools like lease_status for follow-up.
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 50% (plan, country have descriptions; organization_name, billing_email do not). The description adds meaning for billing_email by linking it to the trial-refusal rule, and for plan via trial/paid distinction, but organization_name remains unexplained. It partially compensates but not fully.
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 'Place an order' and immediately clarifies it's for a lease/plan by discussing trial and paid plans. It distinguishes from siblings like list_plans and renew_lease because ordering is the primary purchase action, though it doesn't explicitly name alternatives.
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 context: trial activates immediately, paid stays pending, no account/card needed, and a second trial is refused—ordering a paid plan instead. This implies when to choose this tool over renewing or listing, but doesn't name sibling tools explicitly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
renew_leaseAInspect
Raise an invoice for another term and keep the same addresses. This is how a trial becomes a paying customer: the address does not change, so whatever the customer's partner has already allowlisted goes on working. A trial cannot renew into itself, so name the plan to move to — called without one it returns the plans that can be moved to. Pressing it twice quotes the same reference rather than raising a second invoice.
| Name | Required | Description | Default |
|---|---|---|---|
| plan | No | Slug from list_plans. Defaults to the plan the lease is already on; required to leave a trial. | |
| access_token | Yes | Returned by order_lease. The only credential for a lease. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden and excels: it discloses address preservation, trial-to-plan behavior, planless return of eligible plans, and idempotency ('Pressing it twice quotes the same reference rather than raising a second invoice'). This goes well beyond basic function.
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 front-loaded with the core action and then adds logically ordered details on trial, plan, and idempotency. Every sentence contributes; however, it is moderately long, so not a perfect 5.
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 no output schema or annotations, the description covers key behavior, edge cases, and idempotency, making it largely complete. It doesn't detail error conditions or return formats, but for this simplicity level it's adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers both parameters with helpful descriptions (e.g., plan defaults, access_token provenance). The description adds extra semantics: the plan behavior when omitted on a trial and the idempotency consideration, which are not in the schema. This justifies a score above the 3 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 opens with 'Raise an invoice for another term and keep the same addresses' — a specific verb and resource that clearly distinguishes renewal from sibling tools like order_lease or lease_status. It also ties to the trial-to-paying transition, making 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?
It provides contextual guidance: 'This is how a trial becomes a paying customer' and explains when plan is needed and what happens if omitted. While it doesn't explicitly contrast with alternatives, the trial-to-payment scenario gives clear use case. Could be improved by naming when not to use, but overall strong.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
revoke_tunnelAInspect
Retire a peer and hand its slot back to the plan's allowance. An agent that provisions a tunnel per short-lived worker and never revokes one exhausts the allowance and then cannot bring the next machine up. Revoking the peer that holds the public address stops inbound connections to it and cannot be undone by promoting another — only by bringing a new machine up.
| Name | Required | Description | Default |
|---|---|---|---|
| tunnel_id | Yes | The id lease_status reports for the tunnel. | |
| access_token | Yes | Returned by order_lease. The only credential for a lease. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It clearly states that revoking stops inbound connections, frees the allowance, and is irreversible except by bringing up a new machine. This discloses destructive and irreversible behavior beyond the schema.
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, each adding distinct value: purpose, motivating scenario, and behavioral consequence. It is front-loaded 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?
The description provides a complete picture of the tool's role within the lifecycle: when to use it, what it does, and what it cannot do. Even without an output schema, the agent has enough context to decide 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?
Both parameters (tunnel_id and access_token) are fully described in the schema with references to lease_status and order_lease. The description adds no param-level detail, and the 100% schema coverage makes a baseline 3 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 'Retire a peer and hand its slot back to the plan's allowance,' using a specific verb and resource. It also clarifies the consequence (stopping inbound connections) and distinguishes itself from lifecycle siblings like create_tunnel and renew_lease.
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 provides a concrete scenario—short-lived workers consuming the allowance—and explains why failing to revoke blocks future provisioning. It also notes that 'promoting another' cannot undo the revocation, effectively steering agents away from an alternative, though no explicit tool name is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
set_autorenewAInspect
Stop this lease charging the customer's card again, or start it again. Only a card subscription can be stopped — USDT and bank transfers are payments the customer sends us, so there is nothing of ours to cancel. Stopping is not a cancellation: the lease runs to the end of the period already paid for, and the same call turns it back on.
| Name | Required | Description | Default |
|---|---|---|---|
| enabled | Yes | false stops the next charge, true resumes it. | |
| access_token | Yes | Returned by order_lease. The only credential for a lease. |
Tool Definition Quality
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. It explains the toggle effect (false stops, true resumes), the limitation to card subscriptions, the distinction between stopping and cancellation, and that the lease runs to the end of the paid period. This is comprehensive and addresses potential misunderstandings.
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 long, each serving a distinct purpose: stating the core action, providing the applicability caveat, and clarifying the cancellation distinction. It is front-loaded with the main function and contains 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?
For a simple toggle tool with no output schema, the description covers all essential behavior: how to enable/disable, which payment methods are affected, the non-cancellation nuance, and the reversible nature. The parameter schema handles the remaining details, making this 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 already provides 100% coverage of both parameters: 'enabled' has a clear description of its effect, and 'access_token' is explained as the lease credential. The tool description adds no additional parameter-level detail, so the baseline score of 3 applies.
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: to stop or start a lease's automatic card charging. It distinguishes itself from sibling tools by focusing on autorenewal toggling rather than creation, renewal, or revocation, and it specifies the applicable payment method (card subscriptions only).
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 guidance on when to use the tool: only for card subscriptions, and not for USDT or bank transfers. It also clarifies that stopping is not cancellation, preventing misuse. However, it does not explicitly name alternative tools for cancellation or other operations, so it falls short of a perfect score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
set_reverse_dnsBInspect
Publish a PTR record for an address on the lease. Live within a second; an empty hostname removes it.
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | ||
| hostname | Yes | Empty removes the record. | |
| access_token | Yes | Returned by order_lease. The only credential for a lease. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears the full burden of behavioral disclosure. It adds a latency guarantee ('Live within a second') and mentions the removal behavior, but the removal behavior is already in the schema. It does not disclose prerequisites, side effects, reversibility, or error conditions, leaving significant gaps.
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 exceptionally concise, consisting of two short sentences. It front-loads the purpose and adds a behavioral nuance, with no unnecessary words or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 3-parameter tool with no annotations and no output schema, the description is too minimal. It omits essential context such as the requirement for an active lease, what happens if the address is not on the lease, potential failure modes, and the meaning of the return value. The latency note is helpful but not sufficient for complete 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 coverage is 67% (hostname and access_token have descriptions, address does not). The description adds no parameter-specific meaning beyond the schema, and the undocumented 'address' parameter remains unexplained. The generic 'address' mention in the description does not clarify its format or constraints.
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 'Publish' and clearly identifies the resource as 'a PTR record for an address on the lease.' This distinguishes it from sibling tools that deal with tunnels, leases, or autorenewal, making the tool's purpose immediately clear.
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 context (setting reverse DNS on a lease) but offers no explicit guidance on when to use this tool versus alternatives. There are no exclusions or alternative recommendations, so the usage guidance is only implicit.
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
- AlicenseAqualityDmaintenanceRoutes web requests through 175M+ residential IPs across 195+ countries, enabling AI to bypass geo-restrictions and anti-bot systems.Last updated4661MIT
- AlicenseAqualityBmaintenanceNo-KYC crypto VPS hosting with an MCP server that lets AI agents provision VPS programmatically. Pay with USDC/USDT on Base and Ethereum, no accounts or verification required.Last updated21MIT

Novada Proxyofficial
Alicense-qualityBmaintenanceEnables AI agents to route HTTP requests through millions of real residential IPs, bypassing anti-bot systems and geo-targeting by country or city.Last updated4MIT
AEGIS MCP Serverofficial
Alicense-qualityBmaintenanceProvides AI agents with private, pay-per-request internet access through residential/datacenter exit nodes, settling payments in USDC on Solana, along with key governance and self-audit tools.Last updated5MIT