SesApp Access Sheets
Server Details
Housing access sheets behind revocable guest links. x402 on Base.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
15 toolscreate_ficheAInspect
Create an access sheet. Write the guest flip-book in instructions (Markdown; guest language, usually French). Cover (map/name/address/accessCode) is auto. Pages: --- . Photos: . Intents: Add WiFi or Ajouter le WiFi + wifiName/wifiPassword; Add contact or Ajouter le contact + phoneNumber. Never put wifiPassword in Markdown (150 m GPS). Optional
locale fr|en for guest chrome. Playbook: GET /llms.txt. Requires Bearer. Beyond quota, retry with PAYMENT-SIGNATURE (0.50 USDC on Agent, 0.25 on Fleet).
| Name | Required | Description | Default |
|---|---|---|---|
| lat | No | Cover map + WiFi geofence (150 m). | |
| lon | No | Cover map + WiFi geofence (150 m). | |
| name | Yes | ||
| locale | No | Guest chrome language. Markdown stays as written. Omit to follow Accept-Language / ?lang=. | |
| wifiName | No | SSID for sesapp:wifi. Hidden until 150 m if wifiPassword is set. | |
| accessCode | No | Shown on the generated cover. | |
| phoneNumber | No | Required for sesapp:contact. E.164 preferred. | |
| instructions | No | Markdown flip-book shown to the guest (this field). Cover (map, name, formattedAddress, accessCode) is generated — do not repeat it here. Split pages with a line containing only --- . Supported: # ## ### headings, paragraphs, **bold**, *italic*, - / 1. lists, [label](https://...), . Photos: https URLs only. No file upload — host images yourself. Never put wifiPassword in Markdown; it is unlocked only within 150 m via GPS. Intent hrefs: sesapp:wifi (needs wifiName + wifiPassword) and sesapp:contact (needs phoneNumber). Guest-facing labels: [Ajouter le WiFi] / [Ajouter le contact]. If you omit those links but set the fields, SesApp appends WiFi/contact pages. Example: # Bienvenue Parking au fond à gauche.  --- ## Arrivée Sonnette à gauche. [Itinéraire](https://maps.google.com/?q=48.8566,2.3522) --- [Ajouter le WiFi](sesapp:wifi) --- [Ajouter le contact](sesapp:contact) | |
| wifiPassword | No | Do not put in instructions. Unlocked within 150 m. | |
| formattedAddress | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations at all, the description carries the full burden — and it delivers: it discloses auto-generation of the cover, the 150 m GPS unlock for wifiPassword, SesApp's auto-append of WiFi/contact pages when links are omitted, the 'no file upload, host images yourself' constraint, Bearer auth, and the paid retry path with exact pricing (0.50 USDC Agent / 0.25 Fleet). These are exactly the non-obvious side-effects and operational requirements an agent needs. No contradiction with annotations exists since none are provided.
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 and front-loaded — purpose in the first clause, then critical constraints (security, auth, pricing). Nearly every sentence earns its place and the playbook pointer is a legitimate navigation aid. It reads as telegraphic notes with a few ambiguous fragments ('Pages: ---' requires inference to parse as a page-separator rule) and some overlap with the schema's instructions description, so 4 rather than 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 10-parameter creation tool with no annotations and no output schema, the description covers inputs, format, auth, quota, and pricing thoroughly. The notable gap is the lack of any statement about the return value (e.g., created fiche ID/handle) and behavior on duplicate names. The 'Playbook: GET /llms.txt' pointer partially mitigates the missing output documentation, but it is not a substitute for stating what the call returns.
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 80%, so most parameters are already described. The description adds meaning beyond the schema by linking parameters to behavior: name/formattedAddress/accessCode feed the auto-generated cover, and wifiName/wifiPassword/phoneNumber are the prerequisites for sesapp:wifi and sesapp:contact intents. It also clarifies locale only affects guest chrome and that instructions is the guest-facing field. This compensates for the two undocumented required params (name, formattedAddress).
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 opening line 'Create an access sheet' states a specific verb and resource, and the rest of the description clarifies the deliverable (a guest-facing Markdown flip-book with cover, photos, and intents). Differentiation from siblings (update_fiche, delete_fiche, get_fiche) comes mostly from the tool name's inherent create-vs-other semantics rather than from the description explicitly, so it stops short of a 5.
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 operational context: Markdown formatting rules, intent-href requirements, the 'never put wifiPassword in Markdown' rule, locale behavior, Bearer auth, and the quota/payment retry protocol. It does not explicitly state when to prefer this over update_fiche or that share_fiche should follow creation, so exclusions/alternatives are absent but the context itself is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_ficheBInspect
Delete an owned access sheet and its share links. Requires Bearer.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the burden of disclosing behavior. It does disclose the ownership constraint, the share-link cascade, and the Bearer auth requirement. However, it stops short of stating that deletion is permanent/irreversible or describing possible errors.
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?
One sentence, front-loaded with the action and object, with the important side effect and authentication included. There is no filler; every word communicates a meaningful constraint.
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 destructive, annotation-free tool with no output schema, the description covers the core action, ownership, share-link side effect, and auth. It is incomplete on usage alternatives and irreversibility/error behavior, but otherwise appropriate for a one-parameter delete operation.
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 0%, and the description never explicitly names the id parameter, explains where to find it, or states its format. The only hint is the implicit inference that id identifies the owned access sheet, which is weak compensation for a low-coverage 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 uses a specific verb ('Delete'), names the resource ('access sheet'), and adds a scope qualifier ('owned') plus the cascading effect on share links. This clearly distinguishes it from siblings like create_fiche, update_fiche, and revoke_share.
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?
There is no explicit when-to-use guidance or mention of alternatives. While 'owned' and 'its share links' imply full-sheet deletion, the description does not say to use revoke_share for removing individual share links or list_fiches to locate the id.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_webhookCInspect
Delete a webhook endpoint. Fleet/Platform. Requires Bearer.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
没有annotations,描述必须承担行为披露的全部责任。它仅提及需要Bearer认证,但未说明删除是否永久、是否影响关联资源、是否幂等或错误响应行为。对于一个破坏性操作,这是显著的透明度缺口。
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?
描述非常简短,没有冗余句子,核心删除意图放在最前。但'Fleet/Platform'作为一个独立片段含义模糊,信息价值有限,稍有浪费。
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?
虽然工具参数简单,但无输出schema、无annotations,描述需提供更多上下文。它缺少删除的后果(如永久性、关联影响)、适用场景和可能的错误情况,仅凭当前信息agent难以全面评估调用影响。
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为0%,描述完全未提及id参数的含义、格式或用途,仅能依靠参数名'id'猜测。描述没有为参数增加任何超出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?
描述以明确的动词+资源开头('Delete a webhook endpoint'),能够与兄弟工具如delete_fiche、update_webhook区分开。但'Fleet/Platform'这一片段含义不明确,可能让agent困惑其具体适用范围,略减清晰度。
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?
描述没有说明何时使用该工具而非替代方案(如update_webhook或revoke_share),也未提供任何使用上下文或排除条件。'Requires Bearer'仅提及认证要求,不属于使用时机指导。
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
geocodeAInspect
Resolve a postal address to formattedAddress + lat/lon for create_fiche (cover map and 150 m WiFi geofence). Optional country ISO2. Requires Bearer.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Address search, min 3 characters | |
| country | No | Optional ISO 3166-1 alpha-2, e.g. fr |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses the Bearer auth requirement and the output shape, which is useful. However, it does not describe error behavior, rate limits, or what happens on an unmatched address, leaving some uncertainty for an agent.
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, front-loaded sentence with no wasted words: action, output, purpose, and auth are all included. Every clause earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter tool with no output schema, the description covers the return value, use case, and authentication. It lacks explicit failure-mode handling or edge-case notes, but these are minor given 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?
Schema coverage is 100%: both 'query' and 'country' have descriptions in the input schema. The description adds 'postal address' to clarify the query's expected input and restates optionality, but it does not significantly extend the schema's meaning.
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?
Describes a specific operation ('Resolve a postal address') with explicit output ('formattedAddress + lat/lon') and a named consumer ('create_fiche'). The verb-resource combination clearly distinguishes it from sibling CRUD and webhook tools.
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?
States the intended use ('for create_fiche (cover map and 150 m WiFi geofence)'), which tells an agent when to call this tool. No exclusions are needed because there is no sibling geocoding alternative, and the mention of Bearer auth provides a prerequisite.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_ficheAInspect
Get one owned access sheet by id (same fields as list_fiches). Requires Bearer.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the behavioral disclosure burden. It adds useful context: the sheet must be owned, Bearer authentication is required, and the response fields match list_fiches. However, it does not disclose error behavior such as 404 for missing sheets or 403 for unowned sheets, nor any id format 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 front-loaded sentence: verb and resource come first, followed by the field-shape reference and authentication requirement. There is no filler, redundancy, or 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?
For a simple one-parameter getter with no output schema and no annotations, the description covers the key operational facts: ownership scope, Bearer auth, and return shape via list_fiches. It omits error-handling details, but for this level of complexity the information provided is largely complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the schema only says 'id' is a required string. The description compensates by specifying that the id identifies an owned access sheet, which adds real meaning beyond the bare property name. For a single simple string parameter, this is sufficient.
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 states a specific verb ('Get'), a specific resource ('one owned access sheet'), and the lookup key ('by id'). It also references list_fiches, which distinguishes this single-record getter from its list sibling without 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 clearly conveys that this tool is for fetching a single owned access sheet by id, and 'Requires Bearer' gives necessary context for using it. It references list_fiches for field shape, implying when each sibling is relevant, though it does not explicitly spell out when to prefer list_fiches over get_fiche.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_fichesAInspect
List access sheets owned by the authenticated agent. Requires Authorization: Bearer.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden. It usefully discloses the authentication requirement and the ownership scope, but it does not describe the return format, pagination, error cases, or what happens when the agent has no access sheets.
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 with no filler. It front-loads the core purpose and adds the authentication requirement immediately after, making it easy for an agent to parse quickly.
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 operation, the description covers the essential facts: what is listed, whose sheets are listed, and the required authorization. It omits output shape and pagination details, but the low complexity of this tool keeps the gap minor.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and schema description coverage is 100%, so the baseline is 4. The description adds no parameter-level detail, but none is needed since the input schema is empty.
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 clear verb and resource: 'List access sheets' and adds a specific scope ('owned by the authenticated agent'). This distinguishes it from sibling tools like create_fiche, update_fiche, and delete_fiche without needing to inspect those definitions.
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 a concrete prerequisite ('Requires Authorization: Bearer') but provides no guidance on when to use this tool versus alternatives. It does not mention any exclusions or conditions, so an agent must infer the appropriate use case from the tool name and siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_webhooksAInspect
List webhook endpoints (secret is never returned). Fleet/Platform. Requires Bearer.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It discloses a non-obvious output guarantee ('secret is never returned') and a required auth scheme ('Requires Bearer'), both useful to an agent. It does not describe pagination or explicit read-only semantics, but 'List' plus the secret guarantee provide adequate transparency for this simple read operation.
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 short clauses deliver the core action, a critical output guarantee, scope, and auth requirement without any filler. The most important verb-object pair is front-loaded.
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 parameterless list operation with no output schema, the description is largely complete: it states the operation, scope, auth, and a key response trait. It could add response shape or pagination details, but those are minor gaps given 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 input schema has zero parameters, so there is nothing for the description to add about parameter meaning; the baseline 4 applies. The 'secret is never returned' note is output-related, not a parameter concern.
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, 'List webhook endpoints', which unambiguously identifies the operation. It also adds scope ('Fleet/Platform') that helps distinguish it from sibling webhook tools like register_webhook, update_webhook, and delete_webhook.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description makes the use case clear: call this tool to retrieve webhook endpoints, and it indicates the applicable scope ('Fleet/Platform') and an authentication prerequisite ('Requires Bearer'). It does not explicitly name alternatives or exclusion criteria, but the contrast with create/update/delete siblings is strongly implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
register_webhookAInspect
Fleet/Platform only. Register an HTTPS endpoint. Events: fiche.viewed, share.created, share.revoked, wifi.unlocked, quota.warning. HMAC SHA-256 in X-SesApp-Signature (t=unix,v1=hex of timestamp.body). Secret returned once. Max 5 endpoints. Requires Bearer.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | HTTPS URL (http://127.0.0.1 allowed in DEV) | |
| events | No | Subset of events. Default: all. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral disclosure load, and it does so well: it reveals the HMAC SHA-256 signature format, that the secret is returned only once, and that at most 5 endpoints may exist. It stops short of describing failure behavior (e.g., when the 5-endpoint limit is exceeded) or whether registration triggers a verification request, but overall the side-effect profile is unusually 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?
Five short, information-dense sentences cover scope, resource, event vocabulary, signature mechanics, secret handling, capacity, and auth with no filler. The action is front-loaded and every clause 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?
Given no output schema, the description sensibly discloses the most important return behavior ('Secret returned once') and the endpoint capacity. It could add the response shape (e.g., endpoint id for later update/delete calls), but for a 2-parameter registration tool the provided context is sufficient for a competent agent to call it 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 url and events. The description adds value by listing the valid event names (fiche.viewed, share.created, etc.) and clarifying the HTTPS requirement, which enriches the events parameter beyond the schema's generic 'Subset of events.'
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 opens with a specific verb and object: 'Register an HTTPS endpoint,' and enumerates the event types the endpoint can receive. This clearly distinguishes registering from sibling webhook tools like delete_webhook, list_webhooks, and update_webhook. The 'Fleet/Platform only' scope further narrows the purpose.
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 states a scoping condition ('Fleet/Platform only') and authentication requirement ('Requires Bearer'), and the event list tells the agent what subscriptions can be configured. It does not explicitly name sibling alternatives such as delete_webhook or update_webhook for lifecycle operations, but the verb and resource make the primary use case clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
statusBInspect
Current agent plan, expiry, fichesCount, maxFiches, overageUsdc. Requires Authorization: Bearer.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It does disclose the authorization requirement and the specific fields returned, which is useful. However, it does not explicitly state that this is a read-only operation or describe error/edge-case behavior, though that is reasonably implied by 'status' and the listed data.
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 very compact and front-loads the key returned fields before the auth requirement. Every phrase carries information. It loses a point for being a fragment rather than a complete, self-contained sentence, but there is no waste.
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 status tool with no output schema, the description provides the essential return fields and the auth requirement, which is sufficient for a basic call. It does not explain response formatting or possible failure states, but the low complexity keeps this from being a major 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?
The tool has zero parameters, so there is nothing for the description to elaborate beyond the schema. Per the baseline for 0-parameter tools, a score of 4 is appropriate since no parameter 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 names the specific resource (current agent plan) and enumerates the returned fields, so the tool's purpose is clear. It lacks an explicit verb such as "get" or "retrieve," and it does not explicitly distinguish itself from sibling tools, though its resource is distinct.
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?
No guidance is given about when to use this tool versus alternatives. The only operational note is the Bearer authorization requirement, which is not usage guidance. Sibling tools are not mentioned or contrasted.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
subscribeAInspect
Subscribe or renew. plan=agent (15 USDC, 20 sheets), fleet (79 USDC, 200), platform (250 USDC, fair-use). Send PAYMENT-SIGNATURE (x402 v2). Returns a Bearer JWT.
| Name | Required | Description | Default |
|---|---|---|---|
| plan | No | SKU to purchase. Default agent. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With zero annotations provided, the description carries the full disclosure burden, and it does substantial work: it reveals the payment prerequisite (PAYMENT-SIGNATURE via x402 v2), discloses the return value (Bearer JWT), and explains the price/quota consequence of each plan choice. It does not mention idempotency or double-charge risk for a money-moving operation, which would be valuable, but it goes well beyond a minimal 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?
Two dense sentences with zero filler. The core purpose is front-loaded, followed by the plan pricing table, then the authentication requirement, then the return type. Every clause earns its place and carries decision-relevant or call-relevant 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 1-optional-param tool with no output schema and no annotations, the description covers the essentials: purpose, plan options with cost implications, the required payment signature, and the Bearer JWT response. Minor gaps remain around renewal mechanics (extends vs. replaces an existing subscription) and failure behavior, but nothing that blocks a competent agent from invoking it 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% — the schema documents plan as an enum with 'SKU to purchase. Default agent.' The description adds real decision-making value beyond the schema by attaching price and quota semantics to each enum value (15 USDC/20 sheets, 79 USDC/200, 250 USDC/fair-use), which an agent needs to select the correct plan.
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 the specific verb+resource pair 'Subscribe or renew,' which is a clear statement of the tool's function. The plan options and pricing further define the action, and the tool is immediately distinguishable from all siblings, which are fiche-management operations (create_fiche, delete_fiche, share_fiche, etc.).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage context is implied rather than stated: the tool is for purchasing or renewing a subscription, and the siblings are all fiche operations so there is no real overlap. However, the description never explicitly says 'use this when ...' or mentions exclusions such as when a renewal should be skipped or when a different sibling would be appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_ficheAInspect
Update an owned access sheet. Same fields as create_fiche. Typical: update instructions with photos/links. Requires Bearer.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| lat | No | Cover map + WiFi geofence (150 m). | |
| lon | No | Cover map + WiFi geofence (150 m). | |
| name | No | ||
| locale | No | Guest chrome language. Markdown stays as written. Omit to follow Accept-Language / ?lang=. | |
| wifiName | No | SSID for sesapp:wifi. Hidden until 150 m if wifiPassword is set. | |
| accessCode | No | Shown on the generated cover. | |
| phoneNumber | No | Required for sesapp:contact. E.164 preferred. | |
| instructions | No | Markdown flip-book shown to the guest (this field). Cover (map, name, formattedAddress, accessCode) is generated — do not repeat it here. Split pages with a line containing only --- . Supported: # ## ### headings, paragraphs, **bold**, *italic*, - / 1. lists, [label](https://...), . Photos: https URLs only. No file upload — host images yourself. Never put wifiPassword in Markdown; it is unlocked only within 150 m via GPS. Intent hrefs: sesapp:wifi (needs wifiName + wifiPassword) and sesapp:contact (needs phoneNumber). Guest-facing labels: [Ajouter le WiFi] / [Ajouter le contact]. If you omit those links but set the fields, SesApp appends WiFi/contact pages. Example: # Bienvenue Parking au fond à gauche.  --- ## Arrivée Sonnette à gauche. [Itinéraire](https://maps.google.com/?q=48.8566,2.3522) --- [Ajouter le WiFi](sesapp:wifi) --- [Ajouter le contact](sesapp:contact) | |
| wifiPassword | No | Do not put in instructions. Unlocked within 150 m. | |
| formattedAddress | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions 'Requires Bearer' and that the sheet must be owned, but it does not disclose update semantics such as whether omitted fields are cleared or preserved, whether the update is a partial patch, any side effects, or what the response contains. This is a meaningful gap for a mutation 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?
The description is four short sentences, each earning its place: action and scope, field cross-reference, typical use case, and authentication requirement. It is front-loaded with the core operation 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 mutation tool with no annotations, no output schema, and 11 parameters, the description is incomplete. It covers auth and ownership but omits update semantics (e.g., overwrite vs merge), required id behavior, and any response expectations. The schema helps with field meanings, but the description alone does not give an agent enough behavioral context to call it safely.
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 description adds the cross-reference 'Same fields as create_fiche', which is useful for agents that know the create tool, but it does not explain individual parameters. The schema itself carries 73% coverage with rich descriptions, especially for instructions and locale, so the description does not need to compensate heavily. The remaining undocumented fields (id, name, formattedAddress) are straightforward.
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 'Update an owned access sheet', which is a specific verb + resource and adds the ownership scoping that distinguishes it from a generic update. It also explicitly references create_fiche, helping the agent see this is the update counterpart of that tool.
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 gives a clear context for when to use this tool ('Typical: update instructions with photos/links') and states an implicit precondition (the sheet must be owned). It does not explicitly exclude alternatives or say 'use this instead of create_fiche when the fiche already exists', but the update-vs-create contrast is strongly implied by 'Same fields as create_fiche'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_webhookCInspect
Update url, events, or active. Fleet/Platform. Requires Bearer.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| url | No | ||
| active | No | ||
| events | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of disclosing behavior. It does state a Bearer token is required, which is useful, but it fails to explain whether the update is partial or full, whether existing fields are overwritten, what happens to events when omitted, or what response/error behavior to expect. For a mutating tool, this is a significant transparency gap.
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 short and front-loads the core action, which is good, but the fragmented style ('Fleet/Platform. Requires Bearer.') reduces readability. It is concise without being elegantly structured, and several words are ambiguous rather than informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 4-parameter mutation tool with no output schema and no annotations, this definition is incomplete. It omits required parameter semantics, update semantics, error behavior, and any guidance for distinguishing among six webhook-related sibling tools. An agent cannot reliably invoke this tool correctly based on the description alone.
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 0%, so the description must compensate, but it only repeats the property names 'url, events, or active' without explaining formats, allowed event values, or the role of the required 'id'. It adds no meaning beyond the raw schema and omits the only required parameter. This is insufficient for an agent to construct a correct request.
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 and resource, 'Update url, events, or active', clearly indicating this tool modifies an existing webhook. It is distinguishable from sibling tools like register_webhook, list_webhooks, and delete_webhook, though it does not explicitly name them. The 'Fleet/Platform' phrase adds mild context but does not hurt overall clarity.
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 only a terse hint ('Fleet/Platform. Requires Bearer.') and no guidance about when to choose this tool over alternatives. It does not mention the required id, prerequisites beyond Bearer auth, or relationship to register_webhook/delete_webhook/list_webhooks. An agent is left to infer when this update path is appropriate.
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.
12 tool updates
- Changed
create_fiche1 field changed- added
Input schema / properties / localeAdded value: +{ + "description": "Guest chrome language. Markdown stays as written. Omit to follow Accept-Language / ?lang=.", + "enum": [ + "fr", + "en" + ], + "type": "string" +}
- Added
delete_webhook - Added
geocode - Added
get_fiche - Added
list_shares - Added
list_webhooks - Added
register_webhook - Changed
revoke_share1 field changed- added
Input schema / properties / delayDaysAdded value: +{ + "description": "If set, the link expires after N days instead of being deleted now.", + "type": "number" +}
- Changed
share_fiche1 field changed- changed
Input schema / properties / expiresAt / descriptionPrevious value: -"ISO datetime, optional"New value: +"ISO datetime, optional. Omit for no expiry."
- Added
status - Changed
update_fiche1 field changed- added
Input schema / properties / localeAdded value: +{ + "description": "Guest chrome language. Markdown stays as written. Omit to follow Accept-Language / ?lang=.", + "enum": [ + "fr", + "en" + ], + "type": "string" +}
- Added
update_webhook
7 tool updates
- First observed
create_fiche - First observed
delete_fiche - First observed
list_fiches - First observed
revoke_share - First observed
share_fiche - First observed
subscribe - First observed
update_fiche
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
Noncustodial Base x402 payment control and seller settlement recovery
x402 paywall layer for creator sites and agents: paid content, pricing, reputation, ledger.
Signed prices and no-account x402 USDC tools with secretless egress and verifiable receipts.
Pre-spend x402 reputation from observed behavior, plus portable signed V6 receipts.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables publishers to sell always-on replication of buyer-supplied Hypercore/Hyperdrive keys on Base, with payments in USDC via x402 and lease-based access control.-

402Signalofficial
AlicenseNot gradedqualityBmaintenanceChecks live x402 routes across Base, Solana, and Algorand before agents spend. $0.003 USDC settles only for a valid live eligible route; normal typed misses are not settled. Free preview and validate tools. Seller payment is separate; the agent keeps its wallet. Optional signed route-binding receipts support buyer-side checks.MIT
thoughtproof-mcpofficial
AlicenseBqualityBmaintenanceAdversarial multi-model reasoning verification for AI agents. Claude, Grok, and DeepSeek challenge each decision — returns ALLOW or HOLD with JWKS-signed attestation. x402-gated on Base.11121MIT- AlicenseNot gradedqualityCmaintenanceAdversarial multi-model reasoning verification for AI agents. Claude, Grok, and DeepSeek challenge each decision — returns ALLOW or HOLD with JWKS-signed attestation. x402-gated on Base.5MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct resource and action: fiches have create/get/list/update/delete, shares have create/list/revoke, webhooks have register/list/update/delete, and geocode/status/subscribe are separate supporting operations. There is no meaningful overlap between tools.
The majority of tools follow a clear verb_noun snake_case pattern such as create_fiche, revoke_share, and register_webhook. Minor deviations exist—status is noun-only, subscribe has no explicit object, and list_fiches pluralizes while create_fiche does not—but the naming remains predictable.
Fifteen tools is within the ideal range and each tool maps to a concrete operation needed for the service: fiche lifecycle, sharing, webhooks, and account management. No redundant or filler tools are present.
The tool surface covers full CRUD for fiches, share creation/listing/revocation, webhook registration/listing/update/deletion, and account subscription/status. Agents can complete the main workflows around creating, sharing, and managing access sheets without dead ends.