Skip to main content
Glama

atisbo_connect

Destructive

Compact facade for WHERE Atisbo gets its signals — it CONNECTS sources, not just describes them. Modes: list (connections + live status), catalog (ingestible sources; query filters), create (returns the endpoint), configure, pause, resume, sync_now (pull sources only). Call list before any mutation. THE CATALOG IS NOT THE BOUNDARY: almost anything connects — push app (composio_catalog), daily-pull app (composio_actions, ~1,000 apps), raw webhook/email. Never answer "Atisbo cannot ingest that" from an empty search; call catalog and read fallback. Atisbo only READS a connected system, never writes. create returns an endpoint + signing secret shown EXACTLY ONCE — relay both to the human immediately.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNomode=create: "email" provisions the ingest address; default webhook.
modeNolist/catalog need no ids; others need connection_id or create fields.
labelNocreate/configure: human name for the source, e.g. "Freshdesk".
queryNomode=catalog only: filter by name, category or description.
configNomode=create with provider: catalog required_fields. Stored encrypted, never readable again.
toolkitNocomposio_actions / composio_create: Composio app slug (e.g. "freshdesk", "jira").
providerNomode=create: NATIVE provider from catalog native_providers. Pair with config.
pull_toolNocomposio_create, DAILY apps: read-only action from composio_actions.
recipe_idNomode=create: catalog recipe id — applies its curated mapping.
json_pathsNocreate/configure: dotted paths into the POSTed payload's JSON body.
rate_limitNocreate/configure: max requests per minute accepted. Default 100.
sync_everyNoPULL sources only: cadence. Default daily.
trigger_slugNocomposio_create, INSTANT apps: trigger from composio_catalog.
connection_idNoConnection id from mode=list; required for configure/pause/resume/sync_now.
pull_argumentsNocomposio_create with pull_tool: arguments the action needs.
collection_pathNocomposio_create with pull_tool: dotted path to the record array, when not inferable.
source_categoryNomode=create with your own mapping: what kind of signal the payload carries.
skip_attributionNomode=create: true for anonymous public-forum sources with no attributable customer.

TDQS

A4.9/5.0
Behavior5/5

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

With annotations indicating destructiveHint=true, the description goes beyond by disclosing critical behavioral traits: Atisbo only READS a connected system, never writes; create returns an endpoint + signing secret shown EXACTLY ONCE and must be relayed immediately; config is stored encrypted and never readable again. These are exactly the kind of non-obvious behaviors an agent needs to know.

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

Conciseness4/5

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

The description is dense and front-loaded with the primary purpose (CONNECTS), and each sentence earns its place: modes summary, list-first rule, boundary expansion, read-only rule, and one-time secret warning. It loses one point because the heavy use of ALL-CAPS and the density of information could be slightly overwhelming, but nothing is redundant.

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 an 18-parameter tool with no output schema and nested objects, the description supplies the missing contexts: when to call list, catalog fallback behavior, read-only guarantee, one-time secret handling, pull-vs-instant distinction, and mode-to-parameter mapping. There is no output schema, so the return-value guidance ('catalog (ingestible sources; query filters)', 'create returns the endpoint') is appropriately brief but sufficient.

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

Parameters5/5

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

Although schema coverage is 100%, the description adds crucial cross-parameter semantics: which parameters apply to which modes, that kwargs must pair with native_providers, that json_paths.raw_text is REQUIRED, and that sync_every applies only to PULL sources. It also explains consequences of parameter choices (e.g., email provisions an ingest address). This goes beyond the schema.

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 names a specific verb (CONNECTS) and resource (Atisbo sources/signals), and immediately distinguishes itself from merely describing them. It enumerates concrete modes list, catalog, create, configure, pause, resume, sync_now, composio variants, making the tool's scope unmistakable and differentiating it from siblings like atisbo_analyze or atisbo_capture.

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 instructions: 'Call list before any mutation', and warns against answering from an empty search, directing the agent to call catalog and read fallback. It also explains the CAPABILITIES boundary ('almost anything connects') and provides alternatives by mode. This is strong routing guidance.

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.

TDQS

A4/5.0
Disambiguation5/5

Each tool occupies a distinct functional domain: analysis, capture, connections, decisions, lookup, mapping, orientation, and support. Overlapping cases are explicitly disambiguated in descriptions, such as analyze-for-aggregates vs lookup-for-single-entities and the two non-interchangeable claim-to-node modes in map.

Naming Consistency5/5

All tools follow the same atisbo_<verb> pattern with lowercase snake_case and no mixed conventions. The prefix makes the server identity clear, and every tool name is a concise, predictable verb-like facade.

Tool Count5/5

Eight tools is a well-scoped count for a broad product surface: each tool is a compact facade grouping related modes rather than a scattered collection of one-off operations. There are no trivial or redundant tools.

Completeness5/5

The set covers the core workflow end to end: connect sources, capture signals, look up and analyze entities, map claims, make decisions, orient the workspace, and diagnose failures. Cross-references between tools fill in supporting steps like opening snippet refs and patching living docs, leaving no obvious dead ends.

Resources