Skip to main content
Glama

freeq

Read pinned messages

freeq_pins
Read-only

The messages a channel's operators pinned — usually its rules, links and standing context. Cheaper than reading history when you want to know what a channel is for.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
channelYesChannel whose pins to read, with or without the leading #.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pinsYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

The readOnlyHint annotation already establishes safety, so the bar is lower. The description adds useful behavior context: pins are operator-controlled, usually containing rules/links/standing context, and reading them is cheaper than history. This goes beyond the annotation without contradicting it.

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 concise sentences carry the purpose, content expectations, and cost comparison with no wasted words. The use case is front-loaded and the alternative is mentioned efficiently.

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 a simple, one-parameter read operation with a readOnlyHint, an output schema, and clear sibling context, the description covers what pins are, when to use them, and why they are preferable to history. Nothing essential is missing.

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 channel parameter is already well described in the schema, including the leading-# flexibility. The description adds no additional parameter-level detail, so the baseline of 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 title supplies the verb 'Read' and the resource 'pinned messages', and the description explains what pinned messages typically contain (rules, links, standing context). It also distinguishes itself from freeq_history by noting it is cheaper, so an agent can tell it apart from at least one sibling.

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 explicitly says to use this when you want to know what a channel is for, and positions it as cheaper than reading history. It does not, however, give explicit when-not-to-use guidance or compare against freeq_search and freeq_verify.

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.1/5.0
Disambiguation5/5

Each tool targets a clearly distinct operation: channel discovery, message history, pinned context, full-text search, and signature verification. Even search and history, which both deal with messages, are separated cleanly by use case: querying versus paging.

Naming Consistency4/5

All tools share a consistent lowercase `freeq_` prefix, making them easy to group. The minor deviation is that most names are resource nouns (`channels`, `history`, `pins`, `search`) while `verify` is an action verb, but the pattern remains predictable.

Tool Count5/5

Five tools is a well-scoped set for a focused read-only server: discover channels, read messages, read pins, search, and verify authorship. Each tool has a distinct purpose and none feel redundant or extraneous.

Completeness5/5

The tool surface covers the full intended workflow: finding a channel, reading its current context via pins, paging through history, searching for specific content, and verifying message authorship. No critical dead ends or obvious missing read operations are apparent for this domain.