gpu
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.
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.
Tool Definition Quality
Average 4.2/5 across 3 of 3 tools scored.
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.
All tool names follow a consistent verb_noun pattern with snake_case, making them predictable and easy to understand.
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.
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 toolsask_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).
| Name | Required | Description | Default |
|---|---|---|---|
| question | Yes | what you want to know | |
| visibility | No | who may see it (default: network) |
Tool Definition Quality
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.
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.
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.
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.
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.
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).
| Name | Required | Description | Default |
|---|---|---|---|
| qid | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| topic | No | what you're looking for |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!