Skip to main content
Glama

freeq

Server Details

Read and verify freeq conversations: channels, history, search, signatures, pins.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
freeq-irc/freeq
GitHub Stars
83

Available Tools

5 tools
freeq_channelsList public channelsA
Read-only
Inspect

List the public channels on this server with member counts and topics. Start here when you do not know a channel's exact name. Invite-only, key-protected and encrypted-only channels are never listed. No authentication required.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
channelsYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already mark the tool as read-only and not open-world, and the description adds useful behavioral detail: invite-only, key-protected, and encrypted-only channels are never listed, and no authentication is required. This goes beyond the annotations and helps the agent understand the filtering and access semantics.

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?

Three short sentences with no wasted words. The main action is front-loaded, followed by usage guidance, exclusions, and auth requirement. Each sentence adds value.

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 zero-parameter read-only tool with an output schema, the description is complete. It explains what is returned, when to use it, what is excluded, and that authentication is not required. No important information is missing for an agent to invoke it correctly.

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 has zero parameters, so parameter documentation is not needed. The description still covers the output focus with 'member counts and topics', and the schema is fully covered by the absence of parameters.

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 and resource: 'List the public channels on this server' with member counts and topics. It also clarifies scope by explicitly excluding non-public channels, which distinguishes it from the sibling tools that deal with history, pins, search, and verification.

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 phrase 'Start here when you do not know a channel's exact name' gives clear guidance on when to use this tool. It implies this tool is the entry point before using search or other channel-specific tools, though it does not explicitly name alternatives or describe when not to use it.

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

freeq_historyRead channel historyB
Read-only
Inspect

Read recent messages from a channel, newest first. Page backwards by passing the oldest msgid you have seen as before. Public channels need no authentication; restricted ones need a bearer from a member.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoHow many messages to return.
beforeNoUnix-seconds timestamp of the oldest message you already have; omit for the newest page. This is the `timestamp` field, not the msgid.
channelYesChannel name, with or without the leading #.

Output Schema

ParametersJSON Schema
NameRequiredDescription
messagesYes

TDQS

B3.2/5.0
Behavior4/5

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

Annotations mark this read-only, and the description adds useful beyond-annotation context: public channels need no authentication, restricted channels need a bearer, and messages are returned newest first. However, the pagination note calls `before` the 'oldest msgid,' which conflicts with the schema's explicit 'timestamp field, not the msgid,' slightly reducing reliability.

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 three tight sentences, front-loaded with the core action and then adding only essential extras: ordering, pagination, and authentication. The pagination sentence contains a factual error, but the structure itself is efficient and appropriately sized.

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?

With an output schema and annotations present, the description does not need to explain return values, and it does cover ordering and auth requirements. The `before`/msgid error leaves the pagination guidance incomplete, and there is no sibling routing, so an agent must rely on the schema to avoid misusing the parameter.

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

Parameters2/5

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

Schema coverage is 100%, so the baseline is 3, but the description's `before` guidance is actively misleading: it says to pass the oldest msgid, while the schema says `before` is a Unix-seconds timestamp and expressly 'not the msgid.' This misinformation lowers the score.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a clear verb and resource: 'Read recent messages from a channel' and adds 'newest first,' which matches the title. It does not explicitly contrast with siblings like freeq_search or freeq_pins, so differentiation is left mostly to inference.

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?

The description gives no guidance about when to choose this tool over siblings such as freeq_search or freeq_pins. It discusses pagination mechanics ('Page backwards by passing...') but does not provide when-to-use or when-not-to-use context for tool selection.

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

freeq_pinsRead pinned messagesA
Read-only
Inspect

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.

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

Output Schema

ParametersJSON Schema
NameRequiredDescription
pinsYes

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.

freeq_verifyVerify a message's signatureA
Read-only
Inspect

Check who signed a message. signed_by: "author" is non-repudiable — the author's own key signed those bytes. signed_by: "server" proves relay only, NOT authorship. Call this before quoting anyone as having said something; do not present a server-relayed message as author-signed.

ParametersJSON Schema
NameRequiredDescriptionDefault
msgidYesULID message id.

Output Schema

ParametersJSON Schema
NameRequiredDescription
didNoDID whose key signed.
msgidNo
verifiedYesWhether the signature checks out.
signed_byNo"author" is non-repudiable. "server" proves relay only, NOT authorship.

TDQS

A4.7/5.0
Behavior5/5

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

The description adds meaningful behavioral context beyond the readOnlyHint annotation by explaining the semantic difference between signed_by 'author' and 'server,' including the non-repudiation property and the limitation of relay-only proofs. This helps the agent reason about the trustworthiness of the result.

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 compact and well-structured, leading with the core purpose, then explaining the critical semantic distinction, and ending with actionable guidance. Every sentence adds value with no 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?

For a single-parameter tool with an output schema and read-only annotations, the description is complete. It covers what the tool does, when to use it, what the signed_by values mean, and how to avoid misrepresenting results.

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?

The input schema already documents the single msgid parameter as a ULID message id, so schema coverage is 100%. The description does not add parameter-specific syntax or format details, but it does not need to because the schema fully covers the parameter meaning.

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 opens with a specific verb and resource: 'Check who signed a message.' It clearly distinguishes the tool's purpose from the sibling tools, which are about channels, history, pins, and search, none of which address signature verification.

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

Usage Guidelines5/5

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

It explicitly says when to call the tool: 'Call this before quoting anyone as having said something.' It also provides a clear exclusion by warning not to present a server-relayed message as author-signed, giving the agent actionable usage context.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updates
    • First observedfreeq_channels
    • First observedfreeq_history
    • First observedfreeq_pins
    • First observedfreeq_search
    • First observedfreeq_verify

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

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.