Skip to main content
Glama

lookup_canvas_sections

Retrieve sections or blocks from any Slack canvas by supplying its canvas ID. Use this to read and process canvas content without manual browsing.

Instructions

Look up sections/blocks in a canvas. Requires canvases:read scope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
canvas_idYesCanvas ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.8

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It states the required auth scope ('Requires canvases:read scope') and implies a non-mutating read operation via 'look up', but does not disclose return structure, pagination, or error behavior.

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?

One concise sentence communicates the action, resource, and required scope with no filler. All content is relevant and front-loaded.

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 simple one-parameter lookup tool, the description plus schema provide adequate context to invoke it correctly. It could be slightly more complete by stating what the return value contains, but the lack of output schema and simple signature make the current definition mostly sufficient.

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%, so the schema documents the only parameter canvas_id sufficiently for a baseline. The description adds no additional meaning about the parameter beyond what the schema already contains.

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?

States a specific verb ('look up') and resource ('sections/blocks in a canvas'), clearly distinguishing it from sibling tools like create_canvas, edit_canvas, and delete_canvas. The scope requirement reinforces the read-only nature.

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

Usage Guidelines3/5

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

The verb 'look up' implies use when the agent needs to retrieve canvas sections, but there is no explicit guidance about when not to use it or which alternative to choose. The canvases:read scope is a useful prerequisite but does not provide direct comparison to sibling tools.

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