Skip to main content
Glama

Get connector coverage

well_get_connector_coverage
Read-only

Read what a workspace has CONNECTED and what it can connect. This draws nothing on the user's screen.

Use it for every coverage CHECK: a data skill confirming a bank is connected before it measures anything, a step that needs a workspace_connector_id, a health read on a connector the user asked about. Read each row's state and hand the answer back in your own words, in the same turn — there is no card to wait on here, and no acknowledgement to ask for.

⚠️ FOR A CONNECT STEP, CALL well_list_connectors INSTEAD. Same scope arguments, same rows, and its result draws the card with the install links and the Continue the user clicks. This tool cannot draw one, so a connect step run here leaves the user with prose and no way to act.

Do NOT read workspace_connectors records to work out connection coverage; this tool is that answer.

The rows are the rows of well_list_connectors, field for field. Its description carries the field reference, and this description does not repeat it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
qNoName search across the full catalog (e.g. a specific bank). Omit for the curated, matched-first view.
kindNoScope the card server-side. Three financial domains: "bank" (every bank and neobank, including the long tail of open-banking institutions, plus the platforms that hold an account like Qonto and Pennylane — never a payroll or billing tool that merely reports transactions), "accounting", and "invoicing". Plus two scopes the server resolves from display categories rather than from a financial domain: "upload_surface", the places invoices ARRIVE (mailboxes, messaging apps, file drives), and "storage", the drives Well FILES INTO (Google Drive, Dropbox, OneDrive). The last two are opposite directions on the same drives, so a workspace can hold both connections and each is offered on its own card. Use this for a connect-a-bank, a connect-where-invoices-arrive or a connect-where-Well-files step instead of filtering the default view yourself. Omit for every connectable connector.
limitNoMax connectors to return (1-100, default 50).
offsetNoNumber of connectors to skip, for paging (default 0).
countryNoThe company's country as an ISO 3166-1 alpha-2 code (e.g. "FR"). When set, the connectors that serve that country sort first, then the ones that serve its region, then the rest — the order only, no row is dropped. Use it on a connect-a-bank step so the banks that fit the company appear first; take it from the workspace identity's country. Omit when the country is unknown, and the order is left unchanged.
workspace_idNoTarget workspace. Omit when the token authorizes one workspace. Required when it authorizes several: this read reports one workspace's own figures and will not choose which.
from_selectionNoScope the card to the connectors behind the counterparties the user picked on the missing-invoices card in this conversation, each installable one pre-checked. Use it for the connect step that FOLLOWS a vendor pick. It returns those vendors' connectors and NOTHING else: a picked connector that brings no invoices in is dropped, and no accounting or invoicing tool the user did not pick is offered here: that offer is its own step, scoped with `kind`. Cannot be combined with `q` or `kind`: those name a catalog to browse, and this names a set already decided. Returns an empty list when this conversation holds no pick for this workspace, or when no picked counterparty matched a connector.
conversation_idNoThe conversation id returned by the previous Well result, in its meta under well/conversation_id, in its structuredContent, or in its JSON text block. Pass it back on every call in the same conversation, including a call a card makes, so the chosen workspace and the earlier answers still apply. It decides the conversation on its own: nothing the host states about the session replaces it. Omit it only on the first call of a conversation.
include_unsent_countsNoAdd the top-level `unsent_document_counts`: every tool Well forwards this workspace's documents to, each with how many documents it has not received yet. That array is the whole answer — it holds every one of the workspace's outbound connections, whatever catalog page was requested, and the rows carry no count at all. Off by default, because it costs an extra read. The figure is the workspace's whole backlog, not a period's.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNo
limitNoThe page size that was REQUESTED. The catalog may return fewer.
scopeNoWhat this result is a list OF: the requested kind, the picked vendors' connectors, or the curated catalog when neither was asked for. The card words itself from this, so it never describes the rows as a domain that was not requested.
totalNoEvery connector matching the query, across all pages — NOT the length of `connectors`.
offsetNoHow many catalog rows this page skipped.
successYes
row_countNoHow many rows this result puts ON THE CARD, prepended rows included. `0` on a `picked_vendors` scope means the pick has no connector behind it that can bring an invoice in: the card carries nothing to tick, so say so in half a sentence and move on. Not a paging cursor — `page_count` is.
connectorsNo
page_countNoThe catalog page's own length, and the ONLY safe paging cursor: advance by `offset + page_count`. `connectors` can be LONGER — on the first page of an unsearched browse the workspace's already-connected rows are prepended so they cannot be lost to the catalog's ordering — so paging by the array's length silently skips exactly that many catalog rows on every later request.
conversation_idNoThe conversation this result belongs to. Pass it back as the conversation_id argument on every later Well call in the same conversation.
install_all_urlYesOne link that installs every installable connector in this result. Null when the result offers nothing to install, or when its scope names a set the reader has not chosen. When it is non-null it is the ONLY install link the answer offers — do not list the rows' own install_url beside it. When it is null, the rows' own install_url is the offer instead.
resolved_workspaceNoThe workspace that answered, when the caller named none and the token authorizes several.
install_all_omittedYesThe service ids install_all_url could not carry, because one link names a bounded number of connectors. Offer these rows their own install_url instead of promising the batch link covers them.
conversation_id_noteNoPresent only when the server opened a fresh lane, stating that no choice recorded earlier was read.
conversation_id_sourceNoWhere the conversation id came from: the host's own request meta, the caller's argument, or a fresh lane the server opened.
unsent_document_countsNoEvery tool this workspace forwards documents to, each with the documents it has not received yet, biggest backlog first. Present only when `include_unsent_counts` was set. THIS IS THE ONLY PLACE THE BACKLOG IS REPORTED: it is not a page, it carries the workspace's whole set of outbound connections whether or not the requested catalog page holds their rows, and the catalog rows carry no count. An empty array means the workspace forwards to nothing; an absent field means nothing was measured. `unsent_document_count_is_upper_bound: true` means a document filter applies to that connection, so the count is a maximum and reads as `up to <n>`. Every count is read off Well's own forward record, so it measures what Well wrote down rather than what the tool confirmed. Name a tool by its `name`. An entry reading `0` is a tool that is up to date: say nothing about it.
picked_vendors_filteredNoHow many of the picked vendors' connectors were dropped for bringing no invoices in. Present on the `picked_vendors` scope only. Above zero means the card is SHORTER than the pick: say that those vendors' tools cannot deliver an invoice, rather than letting the gap read as a pick the user never made.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed7 schema fields changed
    • addedInput schema / properties / conversation_id
      Added value: +{
      +  "description": "The conversation id returned by the previous Well result, in its meta under well/conversation_id, in its structuredContent, or in its JSON text block. Pass it back on every call in the same conversation, including a call a card makes, so the chosen workspace and the earlier answers still apply. It decides the conversation on its own: nothing the host states about the session replaces it. Omit it only on the first call of a conversation.",
      +  "type": "string"
      +}
    • changedInput schema / properties / from_selection / description
      Previous value: -"Scope the card to the connectors behind the counterparties the user picked on the missing-invoices card this session, each installable one pre-checked. Use it for the connect step that FOLLOWS a vendor pick. It returns those vendors' connectors and NOTHING else: a picked connector that brings no invoices in is dropped, and no accounting or invoicing tool the user did not pick is offered here — that offer is its own step, scoped with `kind`. Cannot be combined with `q` or `kind` — those name a catalog to browse, and this names a set already decided. Returns an empty list when the session holds no pick for this workspace, or when no picked counterparty matched a connector."New value: +"Scope the card to the connectors behind the counterparties the user picked on the missing-invoices card in this conversation, each installable one pre-checked. Use it for the connect step that FOLLOWS a vendor pick. It returns those vendors' connectors and NOTHING else: a picked connector that brings no invoices in is dropped, and no accounting or invoicing tool the user did not pick is offered here: that offer is its own step, scoped with `kind`. Cannot be combined with `q` or `kind`: those name a catalog to browse, and this names a set already decided. Returns an empty list when this conversation holds no pick for this workspace, or when no picked counterparty matched a connector."
    • addedInput schema / properties / include_unsent_counts
      Added value: +{
      +  "const": true,
      +  "description": "Add the top-level `unsent_document_counts`: every tool Well forwards this workspace's documents to, each with how many documents it has not received yet. That array is the whole answer — it holds every one of the workspace's outbound connections, whatever catalog page was requested, and the rows carry no count at all. Off by default, because it costs an extra read. The figure is the workspace's whole backlog, not a period's.",
      +  "type": "boolean"
      +}
    • addedOutput schema / properties / conversation_id
      Added value: +{
      +  "description": "The conversation this result belongs to. Pass it back as the conversation_id argument on every later Well call in the same conversation.",
      +  "type": "string"
      +}
    • addedOutput schema / properties / conversation_id_note
      Added value: +{
      +  "description": "Present only when the server opened a fresh lane, stating that no choice recorded earlier was read.",
      +  "type": "string"
      +}
    • addedOutput schema / properties / conversation_id_source
      Added value: +{
      +  "description": "Where the conversation id came from: the host's own request meta, the caller's argument, or a fresh lane the server opened.",
      +  "enum": [
      +    "host_meta",
      +    "argument",
      +    "minted"
      +  ],
      +  "type": "string"
      +}
    • addedOutput schema / properties / unsent_document_counts
      Added value: +{
      +  "description": "Every tool this workspace forwards documents to, each with the documents it has not received yet, biggest backlog first. Present only when `include_unsent_counts` was set. THIS IS THE ONLY PLACE THE BACKLOG IS REPORTED: it is not a page, it carries the workspace's whole set of outbound connections whether or not the requested catalog page holds their rows, and the catalog rows carry no count. An empty array means the workspace forwards to nothing; an absent field means nothing was measured. `unsent_document_count_is_upper_bound: true` means a document filter applies to that connection, so the count is a maximum and reads as `up to <n>`. Every count is read off Well's own forward record, so it measures what Well wrote down rather than what the tool confirmed. Name a tool by its `name`. An entry reading `0` is a tool that is up to date: say nothing about it.",
      +  "items": {
      +    "additionalProperties": false,
      +    "properties": {
      +      "name": {
      +        "type": "string"
      +      },
      +      "service_id": {
      +        "type": "string"
      +      },
      +      "unsent_document_count": {
      +        "maximum": 9007199254740991,
      +        "minimum": 0,
      +        "type": "integer"
      +      },
      +      "unsent_document_count_is_upper_bound": {
      +        "type": "boolean"
      +      },
      +      "workspace_connector_id": {
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "service_id",
      +      "name",
      +      "workspace_connector_id",
      +      "unsent_document_count",
      +      "unsent_document_count_is_upper_bound"
      +    ],
      +    "type": "object"
      +  },
      +  "type": "array"
      +}
  2. Changed5 schema fields changed
    • changedInput schema / properties / kind / description
      Previous value: -"Scope the card server-side. Three financial domains: \"bank\" (every bank and neobank, including the long tail of open-banking institutions, plus the platforms that hold an account like Qonto and Pennylane — never a payroll or billing tool that merely reports transactions), \"accounting\", and \"invoicing\". Plus \"upload_surface\": the places invoices ARRIVE — mailboxes, messaging apps, file drives — which is a set of display categories rather than a financial domain, resolved by the server. Use this for a connect-a-bank or a connect-where-invoices-arrive step instead of filtering the default view yourself. Omit for every connectable connector."New value: +"Scope the card server-side. Three financial domains: \"bank\" (every bank and neobank, including the long tail of open-banking institutions, plus the platforms that hold an account like Qonto and Pennylane — never a payroll or billing tool that merely reports transactions), \"accounting\", and \"invoicing\". Plus two scopes the server resolves from display categories rather than from a financial domain: \"upload_surface\", the places invoices ARRIVE (mailboxes, messaging apps, file drives), and \"storage\", the drives Well FILES INTO (Google Drive, Dropbox, OneDrive). The last two are opposite directions on the same drives, so a workspace can hold both connections and each is offered on its own card. Use this for a connect-a-bank, a connect-where-invoices-arrive or a connect-where-Well-files step instead of filtering the default view yourself. Omit for every connectable connector."
    • changedInput schema / properties / kind / enum
      Previous value: -[
      -  "bank",
      -  "accounting",
      -  "invoicing",
      -  "upload_surface"
      -]New value: +[
      +  "bank",
      +  "accounting",
      +  "invoicing",
      +  "upload_surface",
      +  "storage"
      +]
    • changedOutput schema / properties / connectors / items / properties / connection_status / anyOf
      Previous value: -[
      -  {
      -    "enum": [
      -      "enabled",
      -      "processing",
      -      "error",
      -      "need_reconnect",
      -      "to_configure",
      -      "suspended",
      -      "disabled"
      -    ],
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "enum": [
      +      "enabled",
      +      "processing",
      +      "error",
      +      "need_reconnect",
      +      "to_configure",
      +      "disabled"
      +    ],
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedOutput schema / properties / row_count
      Added value: +{
      +  "description": "How many rows this result puts ON THE CARD, prepended rows included. `0` on a `picked_vendors` scope means the pick has no connector behind it that can bring an invoice in: the card carries nothing to tick, so say so in half a sentence and move on. Not a paging cursor — `page_count` is.",
      +  "type": "number"
      +}
    • changedOutput schema / properties / scope / enum
      Previous value: -[
      -  "catalog",
      -  "bank",
      -  "accounting",
      -  "invoicing",
      -  "upload_surface",
      -  "picked_vendors"
      -]New value: +[
      +  "catalog",
      +  "bank",
      +  "accounting",
      +  "invoicing",
      +  "upload_surface",
      +  "storage",
      +  "picked_vendors"
      +]
  3. Changed8 schema fields changed
    • changedInput schema / properties / from_selection / description
      Previous value: -"Scope the card to the connectors behind the counterparties the user picked on the missing-invoices card this session, each installable one pre-checked. Use it for the connect step that FOLLOWS a vendor pick, where the user has already chosen and the card must offer only what they chose. Cannot be combined with `q` or `kind` — those name a catalog to browse, and this names a set already decided. Returns an empty list when the session holds no pick for this workspace, or when no picked counterparty matched a connector."New value: +"Scope the card to the connectors behind the counterparties the user picked on the missing-invoices card this session, each installable one pre-checked. Use it for the connect step that FOLLOWS a vendor pick. It returns those vendors' connectors and NOTHING else: a picked connector that brings no invoices in is dropped, and no accounting or invoicing tool the user did not pick is offered here — that offer is its own step, scoped with `kind`. Cannot be combined with `q` or `kind` — those name a catalog to browse, and this names a set already decided. Returns an empty list when the session holds no pick for this workspace, or when no picked counterparty matched a connector."
    • changedInput schema / properties / kind / description
      Previous value: -"Scope the catalog to one financial domain: \"bank\" (every bank and neobank, including the long tail of open-banking institutions, plus the platforms that hold an account like Qonto and Pennylane — never a payroll or billing tool that merely reports transactions), \"accounting\", or \"invoicing\". Use this for a connect-a-bank or connect-an-accounting-tool step instead of filtering the default view yourself. Omit for every connectable connector."New value: +"Scope the card server-side. Three financial domains: \"bank\" (every bank and neobank, including the long tail of open-banking institutions, plus the platforms that hold an account like Qonto and Pennylane — never a payroll or billing tool that merely reports transactions), \"accounting\", and \"invoicing\". Plus \"upload_surface\": the places invoices ARRIVE — mailboxes, messaging apps, file drives — which is a set of display categories rather than a financial domain, resolved by the server. Use this for a connect-a-bank or a connect-where-invoices-arrive step instead of filtering the default view yourself. Omit for every connectable connector."
    • changedInput schema / properties / kind / enum
      Previous value: -[
      -  "bank",
      -  "accounting",
      -  "invoicing"
      -]New value: +[
      +  "bank",
      +  "accounting",
      +  "invoicing",
      +  "upload_surface"
      +]
    • addedOutput schema / properties / connectors / items / properties / invoice_source
      Added value: +{
      +  "type": "boolean"
      +}
    • addedOutput schema / properties / connectors / items / properties / reason
      Added value: +{
      +  "enum": [
      +    "catalog",
      +    "picked_vendor"
      +  ],
      +  "type": "string"
      +}
    • changedOutput schema / properties / connectors / items / required
      Previous value: -[
      -  "service_id",
      -  "name",
      -  "category_id",
      -  "status",
      -  "direction",
      -  "data_domains",
      -  "logo_url",
      -  "popularity_score",
      -  "is_matched",
      -  "is_selected",
      -  "match_score",
      -  "is_connected",
      -  "connection_status",
      -  "workspace_connector_id",
      -  "last_successful_sync_at",
      -  "sync_in_progress",
      -  "is_preselected",
      -  "install_url",
      -  "countries"
      -]New value: +[
      +  "service_id",
      +  "name",
      +  "category_id",
      +  "status",
      +  "direction",
      +  "data_domains",
      +  "invoice_source",
      +  "reason",
      +  "logo_url",
      +  "popularity_score",
      +  "is_matched",
      +  "is_selected",
      +  "match_score",
      +  "is_connected",
      +  "connection_status",
      +  "workspace_connector_id",
      +  "last_successful_sync_at",
      +  "sync_in_progress",
      +  "is_preselected",
      +  "install_url",
      +  "countries"
      +]
    • addedOutput schema / properties / picked_vendors_filtered
      Added value: +{
      +  "description": "How many of the picked vendors' connectors were dropped for bringing no invoices in. Present on the `picked_vendors` scope only. Above zero means the card is SHORTER than the pick: say that those vendors' tools cannot deliver an invoice, rather than letting the gap read as a pick the user never made.",
      +  "type": "number"
      +}
    • changedOutput schema / properties / scope / enum
      Previous value: -[
      -  "catalog",
      -  "bank",
      -  "accounting",
      -  "invoicing",
      -  "picked_vendors"
      -]New value: +[
      +  "catalog",
      +  "bank",
      +  "accounting",
      +  "invoicing",
      +  "upload_surface",
      +  "picked_vendors"
      +]
  4. Changed3 schema fields changed
    • addedInput schema / properties / country
      Added value: +{
      +  "description": "The company's country as an ISO 3166-1 alpha-2 code (e.g. \"FR\"). When set, the connectors that serve that country sort first, then the ones that serve its region, then the rest — the order only, no row is dropped. Use it on a connect-a-bank step so the banks that fit the company appear first; take it from the workspace identity's country. Omit when the country is unknown, and the order is left unchanged.",
      +  "enum": [
      +    "AD",
      +    "AE",
      +    "AF",
      +    "AG",
      +    "AI",
      +    "AL",
      +    "AM",
      +    "AO",
      +    "AQ",
      +    "AR",
      +    "AS",
      +    "AT",
      +    "AU",
      +    "AW",
      +    "AX",
      +    "AZ",
      +    "BA",
      +    "BB",
      +    "BD",
      +    "BE",
      +    "BF",
      +    "BG",
      +    "BH",
      +    "BI",
      +    "BJ",
      +    "BL",
      +    "BM",
      +    "BN",
      +    "BO",
      +    "BQ",
      +    "BR",
      +    "BS",
      +    "BT",
      +    "BV",
      +    "BW",
      +    "BY",
      +    "BZ",
      +    "CA",
      +    "CC",
      +    "CD",
      +    "CF",
      +    "CG",
      +    "CH",
      +    "CI",
      +    "CK",
      +    "CL",
      +    "CM",
      +    "CN",
      +    "CO",
      +    "CR",
      +    "CU",
      +    "CV",
      +    "CW",
      +    "CX",
      +    "CY",
      +    "CZ",
      +    "DE",
      +    "DJ",
      +    "DK",
      +    "DM",
      +    "DO",
      +    "DZ",
      +    "EC",
      +    "EE",
      +    "EG",
      +    "EH",
      +    "ER",
      +    "ES",
      +    "ET",
      +    "FI",
      +    "FJ",
      +    "FK",
      +    "FM",
      +    "FO",
      +    "FR",
      +    "GA",
      +    "GB",
      +    "GD",
      +    "GE",
      +    "GF",
      +    "GG",
      +    "GH",
      +    "GI",
      +    "GL",
      +    "GM",
      +    "GN",
      +    "GP",
      +    "GQ",
      +    "GR",
      +    "GS",
      +    "GT",
      +    "GU",
      +    "GW",
      +    "GY",
      +    "HK",
      +    "HM",
      +    "HN",
      +    "HR",
      +    "HT",
      +    "HU",
      +    "ID",
      +    "IE",
      +    "IL",
      +    "IM",
      +    "IN",
      +    "IO",
      +    "IQ",
      +    "IR",
      +    "IS",
      +    "IT",
      +    "JE",
      +    "JM",
      +    "JO",
      +    "JP",
      +    "KE",
      +    "KG",
      +    "KH",
      +    "KI",
      +    "KM",
      +    "KN",
      +    "KP",
      +    "KR",
      +    "KW",
      +    "KY",
      +    "KZ",
      +    "LA",
      +    "LB",
      +    "LC",
      +    "LI",
      +    "LK",
      +    "LR",
      +    "LS",
      +    "LT",
      +    "LU",
      +    "LV",
      +    "LY",
      +    "MA",
      +    "MC",
      +    "MD",
      +    "ME",
      +    "MF",
      +    "MG",
      +    "MH",
      +    "MK",
      +    "ML",
      +    "MM",
      +    "MN",
      +    "MO",
      +    "MP",
      +    "MQ",
      +    "MR",
      +    "MS",
      +    "MT",
      +    "MU",
      +    "MV",
      +    "MW",
      +    "MX",
      +    "MY",
      +    "MZ",
      +    "NA",
      +    "NC",
      +    "NE",
      +    "NF",
      +    "NG",
      +    "NI",
      +    "NL",
      +    "NO",
      +    "NP",
      +    "NR",
      +    "NU",
      +    "NZ",
      +    "OM",
      +    "PA",
      +    "PE",
      +    "PF",
      +    "PG",
      +    "PH",
      +    "PK",
      +    "PL",
      +    "PM",
      +    "PN",
      +    "PR",
      +    "PS",
      +    "PT",
      +    "PW",
      +    "PY",
      +    "QA",
      +    "RE",
      +    "RO",
      +    "RS",
      +    "RU",
      +    "RW",
      +    "SA",
      +    "SB",
      +    "SC",
      +    "SD",
      +    "SE",
      +    "SG",
      +    "SH",
      +    "SI",
      +    "SJ",
      +    "SK",
      +    "SL",
      +    "SM",
      +    "SN",
      +    "SO",
      +    "SR",
      +    "SS",
      +    "ST",
      +    "SV",
      +    "SX",
      +    "SY",
      +    "SZ",
      +    "TC",
      +    "TD",
      +    "TF",
      +    "TG",
      +    "TH",
      +    "TJ",
      +    "TK",
      +    "TL",
      +    "TM",
      +    "TN",
      +    "TO",
      +    "TR",
      +    "TT",
      +    "TV",
      +    "TW",
      +    "TZ",
      +    "UA",
      +    "UG",
      +    "UM",
      +    "US",
      +    "UY",
      +    "UZ",
      +    "VA",
      +    "VC",
      +    "VE",
      +    "VG",
      +    "VI",
      +    "VN",
      +    "VU",
      +    "WF",
      +    "WS",
      +    "YE",
      +    "YT",
      +    "ZA",
      +    "ZM",
      +    "ZW"
      +  ],
      +  "type": "string"
      +}
    • addedOutput schema / properties / connectors / items / properties / countries
      Added value: +{
      +  "anyOf": [
      +    {
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ]
      +}
    • changedOutput schema / properties / connectors / items / required
      Previous value: -[
      -  "service_id",
      -  "name",
      -  "category_id",
      -  "status",
      -  "direction",
      -  "data_domains",
      -  "logo_url",
      -  "popularity_score",
      -  "is_matched",
      -  "is_selected",
      -  "match_score",
      -  "is_connected",
      -  "connection_status",
      -  "workspace_connector_id",
      -  "last_successful_sync_at",
      -  "sync_in_progress",
      -  "is_preselected",
      -  "install_url"
      -]New value: +[
      +  "service_id",
      +  "name",
      +  "category_id",
      +  "status",
      +  "direction",
      +  "data_domains",
      +  "logo_url",
      +  "popularity_score",
      +  "is_matched",
      +  "is_selected",
      +  "match_score",
      +  "is_connected",
      +  "connection_status",
      +  "workspace_connector_id",
      +  "last_successful_sync_at",
      +  "sync_in_progress",
      +  "is_preselected",
      +  "install_url",
      +  "countries"
      +]
  5. Added

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations already mark the tool as read-only and non-destructive, and the description goes beyond them by revealing that it draws nothing on screen, returns no card, and must be answered in the same turn. It also discloses a critical limitation: this tool cannot render a connect card, which materially changes how an agent should use it.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence earns its place: purpose is front-loaded, usage guidance is concrete, and the sibling-tool warning is prominent. The final paragraph deliberately avoids duplicating the field reference by pointing to well_list_connectors, keeping the description focused.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with nine parameters and an output schema, the description covers the essential selection and invocation context: what this tool reports, when to call it, when to call the sibling instead, and the UI behavior the agent must account for. Since the schema fully documents parameters and an output schema exists, nothing critical is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage and individually documents all nine parameters in detail, so the description does not need to repeat parameter semantics. The description adds only a cross-reference to well_list_connectors for field-level definitions and mentions 'same scope arguments,' which is useful routing context but not new parameter meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb-resource pair: 'Read what a workspace has CONNECTED and what it can connect,' which is far more precise than the title alone. It also explicitly differentiates this tool from well_list_connectors by saying the connect step must call the sibling instead, and clarifies this tool is the answer for coverage checks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit when-to-use cases: every coverage check, a data skill confirming a bank is connected, a step needing a workspace_connector_id, and a health read on a connector. It also gives explicit when-not-to-use guidance, including a direct instruction to call well_list_connectors for connect steps and a warning not to read workspace_connectors records manually.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources