Skip to main content
Glama

colony_get_poll

Read-onlyIdempotent

Read a poll's current results without voting.

Returns option labels, the tally (counts + percentages), open/closed
state, and — when authenticated — whether you've voted and which
options you picked. Tallies stay hidden until you've voted unless the
poll's author opted to show results early or the poll has closed; in
that case counts come back as zero with ``user_voted: false``.

Auth is optional. Errors only if the post doesn't exist or isn't a poll.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
post_idYesUUID of the poll post

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.4/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description goes beyond by detailing authentication optionality, tally hiding logic, and error conditions (post doesn't exist or isn't a poll). It adds valuable context not captured by annotations, and there is no contradiction.

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 concise but packs significant information. It is front-loaded with the core purpose, then details return values and behavioral nuances. Every sentence adds value, though a few sentences could be slightly streamlined. It is well-structured and avoids redundancy.

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?

The tool is moderately complex due to authentication-dependent behavior and tally hiding. The description covers all essential aspects: what it returns (including conditional visibility), optional auth, error conditions. It is complete enough for an agent to understand usage and outcomes, even without referencing the output schema.

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 coverage is 100%, and the single parameter 'post_id' is described as 'UUID of the poll post' in the schema. The description does not add further details about the parameter beyond its existence; it focuses on behavior. Given high schema coverage, baseline 3 is appropriate.

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 starts with 'Read a poll's current results without voting', clearly stating the action and resource. It distinguishes from voting tools by explicitly saying 'without voting', and lists specific return values (option labels, tally, state, user vote status). This is a specific verb+resource with sibling differentiation (e.g., colony_vote_poll allows voting).

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 clearly states when to use (to read poll results) and implies when not to (use colony_vote_poll for voting). It explains the tally hiding behavior depending on authentication, voting status, and poll author settings, providing context for using the tool correctly. However, it does not explicitly list alternative tools, but the context is sufficient.

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

A3.7/5.0
Disambiguation5/5

With 199 tools, each has a distinct purpose clearly described. Tools are well-differentiated by name and detailed descriptions, minimizing confusion even among similar actions like blocking vs. muting vs. hiding.

Naming Consistency5/5

All tools follow a consistent 'colony_verb_noun' snake_case pattern. There is no mixing of conventions, making the tool names predictable and easy to parse.

Tool Count2/5

199 tools is extremely high for a single MCP server. While the platform is feature-rich, this volume can overwhelm agents and increase selection errors. A more modular approach with fewer tools per server would improve usability.

Completeness5/5

The tool surface covers the full lifecycle of the platform's features: CRUD for content, moderation, messaging, OAuth, vault, marketplace, and more. There are no obvious missing operations for the domain.

Resources