ChangePacket
Server Details
Web and MCP change memory with native diff UI; later calls return only what changed.
- 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.5/5 across 3 of 3 tools scored.
Each tool serves a clearly distinct purpose: buying prepaid API calls, monitoring MCP server tool catalogs, and monitoring webpage changes. No overlap or ambiguity exists among them.
All tool names follow a consistent verb_noun snake_case pattern: buy_ and check_ prefixes with descriptive objects. This makes the set predictable and easy to navigate.
With only 3 tools, the set is small but appropriate for a focused utility centered on purchasing ChangePacket calls and checking changes in two specific contexts. It avoids bloat while covering the core actions.
The domain appears to be ChangePacket's change-detection service. The purchase mechanism and the two change-checking tools cover the primary workflows, though a tool for viewing usage history or canceling calls might round it out.
Available Tools
3 toolsbuy_changepacket_callsBuy ChangePacket callsAInspect
Use only when free usage is exhausted or persistent production use is needed. Returns a Stripe checkout URL for 2,000 prepaid ChangePacket calls for $9; it does not itself charge or expose payment credentials.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full behavioral burden. It discloses that it returns a checkout URL only, does not charge directly, and does not expose payment credentials—key traits for a purchase-related tool. This goes beyond the bare minimum.
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-loads the usage condition, followed by the key return value. Every word earns its place with no 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 tool's simplicity (no parameters, no output schema), the description fully covers what it does, when to use it, and its side-effect behavior. It is complete for the 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?
The tool has zero parameters, so the baseline is 4. The description adds meaning by explaining the fixed quantity and price (2,000 calls for $9), which is useful context even though no parameters exist.
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 returns a Stripe checkout URL for 2,000 prepaid ChangePacket calls for $9, providing a specific verb and resource. It distinguishes from siblings like check_mcp_surface_changes and check_url_changes by addressing a purchase action rather than content changes.
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: only when free usage is exhausted or persistent production use is needed. It also sets expectations that the tool does not charge or expose payment credentials, which guides appropriate usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_mcp_surface_changesCheck MCP tool-surface changesAInspect
Use when an agent depends on a remote public HTTPS MCP server and needs to know whether its tool catalog changed. First call stores the tools/list baseline; later calls return only added, removed, or modified tools plus compact risk hints. Avoid for private/authenticated MCP endpoints or as a substitute for a full security audit.
| Name | Required | Description | Default |
|---|---|---|---|
| endpoint_url | Yes | Public HTTPS MCP endpoint that supports tools/list. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full behavioral burden and does so well. It discloses the stateful first-call baseline storage, later diff behavior (added/removed/modified), and compact risk hints, plus scope limits regarding public HTTPS endpoints.
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, front-loaded with the primary use case, then behavioral detail, then a caution. Every sentence earns its place with no fluff 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 single-parameter tool with no output schema and no annotations, the description provides sufficient context: purpose, usage trigger, stateful behavior, result content, and exclusions. It is complete enough for an agent to correctly select and invoke the tool.
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 single parameter endpoint_url has 100% schema description coverage ('Public HTTPS MCP endpoint that supports tools/list'), so the schema already explains the parameter. The description reinforces the public HTTPS constraint but adds no new parameter-specific syntax or format details.
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 checks whether an MCP server's tool catalog changed, with a specific verb+resource ('check MCP tool-surface changes'). It distinguishes itself from siblings like check_url_changes by focusing on the MCP tools/list catalog rather than generic URL changes.
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 says when to use it ('when an agent depends on a remote public HTTPS MCP server and needs to know whether its tool catalog changed') and when not to ('Avoid for private/authenticated MCP endpoints or as a substitute for a full security audit'). It does not name an alternative tool explicitly, so it misses the full 5-point criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_url_changesCheck webpage changesAInspect
Use for repeated research on one public webpage when the agent only needs what changed since its last call. First call stores a baseline; later calls return added/removed text lines. Avoid for authenticated/private pages, binary files, or one-time page reading.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public HTTP(S) webpage URL. Private-network and unsafe targets are rejected. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the burden of disclosing behavior. It effectively reveals the stateful nature: first call stores a baseline, later calls return added/removed text lines. It does not detail persistence duration or exact first-call output, but it covers the core side effect (baseline storage).
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 purpose and use cases. Every word contributes value, and the structure flows from when to use to what it does to what to avoid.
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 stateful tool with no output schema and no annotations, the description provides sufficient context: state behavior, return contents, and exclusions. It does not explain baseline expiration or first-call return behavior, but given the tool's simplicity, it is nearly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter, url, is fully described in the schema (public HTTP(S), private/unsafe rejected). The description adds that the same URL is reused across calls, but this is a usage nuance rather than new parameter semantics. With 100% schema coverage, a baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the tool's function: tracking changes on a public webpage across repeated calls, with a baseline on first call and added/removed text lines on subsequent calls. It distinguishes itself from siblings like 'check_mcp_surface_changes' by focusing on webpage content rather than MCP surface.
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 (repeated research on a single public webpage needing only changes) and when to avoid (authenticated/private pages, binary files, one-time reading). However, it does not name specific alternative tools, so it falls short of the full 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceA local MCP memory server giving LLMs a persistent, auditable memory fabric with temporal awareness, relationship tracking, and contradiction detection.MIT
- Alicense-qualityDmaintenanceMCP server that captures and recalls coding session memory (failures, decisions, diffs) for AI agents, enabling cross-agent continuity and preventing repeated mistakes.114MIT
- AlicenseBqualityAmaintenanceA local MCP server that provides agents with tools to list, read, search, inspect history and diffs, and capture unstructured text in a user-owned Git repository of durable memory.5MIT
- Alicense-qualityBmaintenanceAn MCP-native, local-first memory server that gives AI agents persistent, structured memory across sessions and tools, enabling them to maintain identity and context without reconfiguration.3MIT