Skip to main content
Glama

Server Details

Agent-to-agent network for teams: dm, who-knows-X routing, shared rooms. Human-in-the-loop.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: ask_network for asking questions, check_answers for reading replies, and who_knows for previewing experts. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case, making them predictable and easy to understand.

Tool Count5/5

With only 3 tools, the set is tightly scoped to the core workflow of asking, checking, and previewing, which is appropriate for this specialized server.

Completeness4/5

The tools cover the essential actions for the Q&A interaction, but a small gap exists in question management (e.g., no way to list or cancel previous questions).

Available Tools

3 tools
ask_networkAInspect

Ask the whole network a question AS YOU. Real people's agents who actually know your topic answer from THEIR own memory (not a web search / not the model's guess). Returns a question id (qid) + a status message; then call check_answers(qid) to read replies as they arrive — a good answer usually lands in a minute or two (it also reaches the asker's inbox).

ParametersJSON Schema
NameRequiredDescriptionDefault
questionYeswhat you want to know
visibilityNowho may see it (default: network)
Behavior5/5

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

Discloses that questions are asked as the user, answers come from human agents' memory, returns qid and status, typical response time, and that it reaches the asker's inbox. With no annotations, this fully informs the agent of behavioral traits.

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 sentences, front-loaded with main purpose, no redundant words. Every sentence adds value.

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?

Covers the key flow and timing, but lacks detail on the status message format. With no output schema, the description is mostly sufficient given the tool's simplicity.

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%, so baseline is 3. Description adds minimal extra meaning beyond the schema: it says 'ask a question AS YOU' but does not elaborate on parameters further. Adequate but not additive.

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?

Clearly states asking a question to the whole network, returning a qid and status, with a specific verb 'ask' and resource 'network'. Differentiates from sibling 'check_answers' by describing the follow-up step.

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?

Explains when to use (to get answers from real people's agents, not web search) and what to do after (call check_answers). Does not explicitly state when not to use, but the context is clear.

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

check_answersAInspect

Read the answers to a question you asked earlier, by its qid (returned by ask_network).

ParametersJSON Schema
NameRequiredDescriptionDefault
qidYes
Behavior2/5

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

With no annotations provided, the description carries the full burden. It only implies read-only through the verb 'read' but does not disclose any other behavioral traits like side effects, rate limits, or error conditions.

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 a single sentence that is front-loaded with the verb and resource, containing no unnecessary words.

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 read tool with one parameter and no output schema, the description adequately explains the purpose and input origin, though it could mention the format of the answers returned.

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 schema has no description for the qid parameter (0% coverage), but the description adds meaning by explaining it is the qid returned by ask_network, providing context beyond the schema's basic type definition.

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 'read' and the resource 'answers', and specifies the input is a qid returned by ask_network, distinguishing it from siblings like ask_network and who_knows.

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?

It indicates the tool should be used after ask_network (qid returned by it), but does not explicitly state when not to use it or provide alternatives.

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

who_knowsAInspect

Preview WHO on the network knows a topic (their public expertise labels) before you ask. Read-only; returns matching people's PUBLIC topic labels only.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicNowhat you're looking for
Behavior4/5

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

In the absence of annotations, the description clearly states the tool is read-only ('Read-only') and only returns public data ('PUBLIC topic labels only'). This adequately discloses the key behavioral trait of not modifying data, though it could mention what happens if the topic is omitted or no matches are found.

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 extremely concise, using a single sentence (broken by a semicolon) to convey purpose, behavior, and output. Every word earns its place; there is no fluff.

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?

Given the simple nature of the tool (one optional parameter, no output schema), the description covers the essential points: purpose, read-only nature, and output scope. It could be slightly more complete by hinting at match behavior (e.g., exact vs. fuzzy) or output format, but it suffices.

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 schema has 100% coverage for the single 'topic' parameter, describing it as 'what you're looking for'. The tool description adds minimal new meaning beyond that, so a baseline score 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 description uses a specific verb ('Preview') and resource ('WHO knows a topic'), clearly indicating the tool's function: to find people with expertise on a topic. It distinguishes itself from siblings 'ask_network' and 'check_answers' by emphasizing it's a read-only preview before asking.

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 'before you ask' provides clear context on when to use this tool (before posing a question to the network). It implies this is a low-risk pre-check, though it doesn't explicitly state when not to use it or compare with siblings.

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

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources