Skip to main content
Glama

get_integration_docs

Get API endpoints, base URL, and a working code example for a specific integration provider. Call this before writing workflow code that uses an integration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
providerYesProvider slug, e.g. github, salesforce, slack, hubspot, notion, linear, stripe, zendesk, airtable

TDQS

A4/5.0
Behavior3/5

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 clearly indicates the tool returns documentation content (endpoints, base URL, code example) and implies a read-only retrieval operation through 'Get' and 'Call this before...'. However, it does not disclose error behavior, prerequisites like existing connections, or whether any configuration is returned beyond the listed items.

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?

Two short sentences, no filler. The first sentence states the purpose and output, and the second provides actionable usage guidance. All content earns its place.

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

Completeness4/5

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

For a single-parameter tool with no output schema, the description covers the key contextual needs: what the tool returns and when to call it. It does not detail the exact response shape, but the listed items (endpoints, base URL, code example) give sufficient expectation. This is adequate for an agent to select and invoke the tool correctly.

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?

Schema description coverage is 100% for the single 'provider' parameter, which already includes a clear description and concrete examples. The description adds only that the provider is 'specific', but does not need to add more because the schema fully documents the parameter format and valid values.

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 states a specific verb ('Get') and resource ('API endpoints, base URL, and a working code example for a specific integration provider'), making the tool's purpose immediately clear. It also distinguishes itself from sibling tools like get_agent_framework_docs by focusing on integration providers rather than agent frameworks.

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

Usage Guidelines4/5

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

The description gives explicit guidance: 'Call this before writing workflow code that uses an integration.' This clearly establishes when to use the tool. It does not mention alternatives or when not to use it, but for a simple documentation-fetching tool the timing guidance is strong and practical.

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

B3.2/5.0
Disambiguation5/5

Every tool has a clearly distinct purpose: workflow lifecycle, invocation, logging, metrics, KV store, secrets, connections, and documentation. Even similar tools like get_logs vs get_invocation are well-differentiated by descriptions.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern (create_workflow, get_workflow, list_workflows). The KV tools (kv_get, kv_set, kv_list, kv_delete) are internally consistent but deviate from the dominant verb_noun style by using a noun_verb prefix.

Tool Count4/5

With 18 tools, the count is slightly above the typical 3-15 range, but the broad platform scope (workflow management, invocation, logging, metrics, KV, secrets, connections, docs) justifies each tool's existence. No tool feels redundant.

Completeness3/5

Workflows have create, read, update (via update_draft), list, and publish, but lack a delete operation. Secrets support create and list but no delete/update, and connections only have list. These lifecycle gaps create potential dead ends for agents.

Resources