Skip to main content
Glama

get_workspace_info

Retrieve current Slack workspace details such as name, domain, and settings to quickly understand your team's environment.

Instructions

Get information about the current Slack workspace.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.8

TDQS

A3.7/5.0
Behavior3/5

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

The verb 'Get' conveys a read-only, non-mutating operation, which is useful since no annotations are provided. However, the description does not disclose what data is returned, whether any special authorization is needed, or any other behavioral details. It is honest but minimal.

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 one short sentence with no filler. The action and target resource are front-loaded, making the tool's purpose immediately understandable.

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

Completeness3/5

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

For a zero-parameter tool, correctness of invocation is trivially satisfied. However, with no output schema and no mention of what workspace fields are returned, an agent is left guessing about the result shape, which matters when using the output in later steps.

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

Parameters4/5

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

The tool takes zero parameters and the schema description coverage is 100%, so there are no parameters requiring semantic explanation. The baseline of 4 applies because the description does not need to compensate for any undocumented inputs.

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 clearly states the verb 'Get' and the resource 'current Slack workspace', distinguishing it from sibling tools that operate on channels, messages, users, or files. Even though it does not enumerate the returned fields, the resource scope is unambiguous and none of the siblings cover workspace-level info.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives like get_bot_info or auth_test, which could also be relevant for workspace-level context. The description implies a general workspace information need but gives no conditions, exclusions, or alternative routing.

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