goodbotbad.bot
Server Details
The MCP server behind goodbotbad.bot, where the crowd rules AI transcripts good bot or bad bot.
- Status
- Healthy
- Uptime
- 99.9% over 41 days
- OAuth
- Works in Glama
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-06-18
- URL
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: pairing, fetching, searching, and submitting. Even complete_pair's two call modes are explicitly documented and don't overlap with the other tools.
All tool names follow the same snake_case verb_noun pattern (complete_pair, get_post, search_posts, submit_transcript), making the action and resource immediately recognizable and consistent.
Four tools is a lean but complete set for the server's purpose of submitting and pairing transcripts. Each tool serves a distinct core function without redundancy or bloat.
The tool surface covers the full workflow: submission, retrieval, search, and pair creation. Repairs are handled via the `fixes` parameter on submit_transcript, so no major gaps exist in the domain.
Available Tools
4 toolscomplete_pairAnswer the site's request for a post's other halfAInspect
goodbotbad.bot pairs transcripts: two posts on one subject where exactly one thing differed and the outcomes were opposite. Call this with no arguments to be handed an unpaired post's prompt to run yourself. Call it with id and the response you got to stage the other half. NOTHING IS PUBLISHED — staging creates a draft and a pair candidate, and both a human and a moderator have to agree before either appears.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | The post you are answering. Omit to be given one. | |
| note | No | ||
| model | No | Which model produced your response. | |
| verdict | No | ||
| response | No | What the model produced when you ran its prompt. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | No | The post to run, when you asked for one. |
| side | No | Which way that post was ruled, so you know which half is missing. |
| prompt | No | Its prompt, verbatim. Run this. |
| pair_id | No | The pair candidate, or null where the draft stood but the pair claim did not. |
| draft_url | No | Where a human confirms what you staged. Nothing is published before that. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=false, destructiveHint=false, and openWorldHint=true. The description adds crucial behavioral context: staging creates a draft and pair candidate, requiring both human and moderator approval before publication. This goes beyond annotations to explain the non-immediate publishing behavior and moderation gate.
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 four concise sentences, each earning its place: it explains the purpose, provides two usage scenarios, and clarifies the staging/moderation process. No fluff or redundancy. Front-loaded with the core concept of pairing transcripts.
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 presence of an output schema (documenting return values) and the annotations (readOnlyHint, destructiveHint, openWorldHint), the description sufficiently covers the workflow, moderation gate, and usage patterns. The agent has enough context to correctly select and invoke the tool, including the staging behavior not present in structured data.
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 60% (3 of 5 params have descriptions). The description adds context for id and response by explaining their role in the staging workflow, but does not mention the note or verdict parameters, which lack schema descriptions. While the description compensates partially, the missing parameters leave a gap for the agent to understand their purpose.
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 tool's purpose: pairing two posts on a subject where one thing differed and outcomes were opposite. It distinguishes itself from siblings (get_post, search_posts, submit_transcript) by specifically handling the 'other half' submission workflow. The title 'Answer the site's request for a post's other half' reinforces the specific verb-resource relationship.
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 description provides explicit guidance on two usage scenarios: call with no arguments to receive a prompt, or call with id and response to stage the other half. It also clarifies that nothing is published immediately, explaining the moderation workflow. This thoroughly informs when and how to use the tool versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_postRead one post in fullARead-onlyInspect
Fetch one post from goodbotbad.bot by its id: the full transcript, the submitter's note, the verdict and the vote counts. Use it to see exactly what was submitted before offering the other half of a pair, or to quote it back to your human.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The post's public id. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| note | No | The submitter's own writing. Never machine-authored. |
| side | No | |
| fixes | Yes | Repairs offered against this post. Candidates, not rulings. |
| model | No | The catalogue slug, or null where the named model resolved to no row. |
| title | No | |
| turns | Yes | |
| votes | Yes | |
| repairs | No | If this post is itself a fix, the id of the failure it repairs. |
| category | Yes | |
| extraction | No | |
| provenance | Yes | |
| rerunnable | Yes | Its prompt turns are present and unelided, so complete_pair can re-run it. |
| accepted_fix | No | The one repair the author accepted, or null. The only one to act on unasked. |
| reported_model | No | What the submitter called it, verbatim. |
| verdict_declared | No | The lane the submitter entered it in, which the crowd may since have overturned. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is clear. The description adds value by listing the returned data elements (transcript, note, verdict, vote counts), which helps the agent understand the tool's output without needing to infer from the output schema. However, it does not mention any potential errors, rate limits, or data freshness, though these are less critical for a simple read operation with a rich output schema.
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 exactly two sentences: the first states what the tool does and what it returns, and the second provides situational guidance. Every clause earns its place, and the most important information is front-loaded. This is a model of concise, effective tool documentation.
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 lookup tool with one parameter, the description covers all necessary aspects: what it does, what it returns, and when to use it. The presence of an output schema means return values are defined elsewhere, so the description doesn't need to detail them. The annotation set covers safety, and the sibling list is small and unambiguous. Nothing material is missing.
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?
With schema coverage at 100%, the schema already documents the single 'id' parameter fully. The description does not add additional parameter-level context (e.g., format, constraints) beyond what the schema provides, so the baseline of 3 is appropriate. There is no extra semantic depth added beyond what the agent can see in the schema.
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 gives a specific verb ('Fetch'), a specific resource ('one post from goodbotbad.bot'), and the exact fields returned ('full transcript, the submitter's note, the verdict and the vote counts'). It clearly distinguishes itself from siblings like search_posts (search) and submit_transcript (submit) by focusing on fetching a single post by id, and implicitly contrasts with complete_pair which completes a pair rather than reading a post.
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 description explicitly states when to use this tool: 'Use it to see exactly what was submitted before offering the other half of a pair, or to quote it back to your human.' This provides a clear directive for the agent, making it obvious when to invoke this tool over alternatives. It even explains the workflow context (offering the other half of a pair) which ties into sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_postsSearch the archiveARead-onlyInspect
Search goodbotbad.bot for transcripts people have already ruled on. Useful before submitting — a failure that is already in the archive should be voted on rather than posted again. Returns ids, titles, verdicts and vote counts.
| Name | Required | Description | Default |
|---|---|---|---|
| side | No | ||
| limit | No | ||
| model | No | A model slug, such as claude-opus-5. | |
| query | No | Words from the title or the submitter's note. | |
| category | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| results | Yes | Matching posts, most relevant first, capped at 25. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, non-destructive behavior, and the description adds meaningful behavioral scope: it searches only posted/ruled transcripts and returns ids, titles, verdicts, and vote counts rather than full transcripts. This goes slightly beyond the structured annotations without contradicting them.
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, each earning its place: what is searched, when to use it, and what is returned. No filler or repetition of the schema.
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 read-only search with an output schema and mostly self-explanatory optional filters, the description is nearly complete: it names the source, the use case, and the returned fields. The main gap is parameter semantics, which the schema partially covers.
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 description coverage is only 40%, and the description does not compensate. It never explains how side, limit, or category should be used, even though the verdict vocabulary in the description maps loosely to 'side'.
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 states a specific verb and resource ('Search goodbotbad.bot for transcripts people have already ruled on') and clarifies the scope: only archived, already-ruled transcripts. The 'before submitting' note and the returned summary fields differentiate it from submit_transcript and get_post.
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 gives clear usage context ('Useful before submitting — a failure that is already in the archive should be voted on rather than posted again'). It does not explicitly name sibling tools or state when not to use it, but the context is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_transcriptSubmit a transcript for the crowd to rule onAInspect
Submit an AI prompt and the response it produced to goodbotbad.bot, where people vote good bot or bad bot on it. NOTHING IS PUBLISHED BY THIS CALL. It creates a draft and returns a URL; a human has to open that URL and confirm before anything becomes visible, and you should show them the URL. There is deliberately no note parameter — the note is the human's account of why the exchange is worth posting, they write it on that page, and it is not something to compose for them. Secrets and API keys are detected and the submission is refused outright. Personal data — an email address, a phone number, a home directory path — is redacted before storing and named in the reply; show your human what was removed along with the URL. Quote the prompt verbatim if you can; if the real input was too large or is not recoverable, describe it in objective instead and say so. If the transcript is larger than 65536 bytes, send manifest INSTEAD of turns — a role, a byte count and a short label per turn, and no bodies — and the server will ask your human which passages to send. Do not send the bodies and let the server reject them: that has already disclosed them. To submit a repair for a failure already on the site, pass its id as fixes — a fix is a rewritten prompt and the better response it produced, so its verdict is good, and it waits on two people rather than one: a moderator screens it, and whoever posted the failure decides whether it repairs it. If the reply asks for token usage, it is asking your human and not you — they read it off their own client, which you cannot see. Put what they say in inputResponses.usage and send the whole call again with the requestState; it attaches to the draft that already exists rather than making a second one. Never supply a figure of your own, and skipping is a fine answer.
| Name | Required | Description | Default |
|---|---|---|---|
| fixes | No | The id of a published post the crowd ruled bad bot, if this transcript is the repair of it. The id search_posts and get_post return. | |
| model | Yes | The model or product that produced it, as its own name. | |
| title | Yes | ||
| turns | No | The exchange in order. Omit when sending a manifest. Use role `attachment` for an image or file that was part of the exchange — its body describes what was there, since only text is stored. | |
| usage | No | Token counts, if your client has genuine API metadata. Omitted is better than guessed. | |
| verdict | Yes | Your human's ruling, not yours. | |
| category | Yes | ||
| manifest | No | Describes an oversized transcript without sending it: role, bytes and a short label per turn. | |
| source_url | No | ||
| requestState | No | Echo back untouched from a previous inputRequired reply. | |
| inputResponses | No | Answers to a previous inputRequired reply. |
Output Schema
| Name | Required | Description |
|---|---|---|
| fixes | No | The id of the failure this repairs, if it is a repair. |
| state | No | `draft` on submission. Later legs report where the post has since got to. |
| post_url | No | The post's own address. It answers 404 until your human confirms; after that anyone holding it can read the post. Share this one, never the draft URL. |
| draft_url | No | Where your human confirms it. Nothing is published until they do. |
| public_id | No | |
| redactions | No | What was redacted before storing, named so your human knows what changed. Empty when nothing was. |
| usage_source | No | `attested` when a human typed the figures. Null when they declined. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes far beyond the annotations. Annotations say readOnlyHint=false and destructiveHint=false, but the description discloses that the call is not published, returns a URL requiring human confirmation, detects and refuses secrets, redacts personal data and names it in the reply, and explains the two-person rule for fixes. It also clarifies the token usage flow, explicitly stating the agent must never supply its own figures. These are critical behavioral traits that the annotations alone would not convey.
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?
While long, every sentence earns its place. The description is front-loaded with the primary purpose and the critical 'nothing is published' caveat, then moves through the manifest path, the fixes flow, and the token usage workflow. It avoids redundancy and uses direct imperative sentences ('Quote the prompt verbatim', 'Never supply a figure of your own') that are actionable. The density is high but justified by the tool's complexity.
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 tool with 11 parameters, 4 required, nested objects, and an output schema, this description covers all major usage scenarios: standard submission, oversized transcripts via manifest, repair via fixes, and the interactive token-usage flow. It addresses security (secrets, redaction), human involvement (URL confirmation, note composition), and edge cases (oversized prompts). No significant operational gap remains.
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?
Although schema coverage is 73%, the description adds substantial meaning to parameters beyond what the schema provides. It explains the `manifest`/`turns` tradeoff, the role of `fixes`, the `objective` fallback for non-recoverable prompts, the `attachment` role description, and the purpose of `inputResponses.usage`. It also clarifies that `verdict` and `category` are the human's ruling, not the agent's. This is exactly the kind of contextual enrichment that helps an agent call correctly.
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 opens with a clear verb+resource: 'Submit an AI prompt and the response it produced to goodbotbad.bot' and immediately establishes the purpose of crowd voting. It distinguishes itself from siblings (complete_pair, get_post, search_posts) by being the only tool that creates submissions, and it explicitly notes it creates a draft rather than publishing, which is a key differentiator.
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 description provides explicit when-to-use guidance: it specifies when to use `turns` vs `manifest` (oversized transcripts), when to use `fixes` (repair of a failure), and when to use `inputResponses` (token usage from the human). It also states a clear don't: 'Do not send the bodies and let the server reject them: that has already disclosed them.' This is model usage guidance, not just a restatement of purpose.
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.
1 tool update
- Changed
submit_transcript1 field changed- added
Output schema / properties / post_urlAdded value: +{ + "description": "The post's own address. It answers 404 until your human confirms; after that anyone holding it can read the post. Share this one, never the draft URL.", + "type": "string" +}
4 tool updates
- First observed
complete_pair - First observed
get_post - First observed
search_posts - First observed
submit_transcript
Related MCP Connectors
An MCP server that provides congressional transcripts
MCP server for RiverScript, an AI transcription platform - fetches transcripts shared via a link.
Official MCP server for Agentwork — delegate tasks to AI agents with human-in-the-loop
An MCP server that integrates with Discord to provide AI-powered features.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceThis MCP server fetches and extracts transcripts from YouTube videos, enabling AI language models to access and analyze video content.1-
- AlicenseNot gradedqualityCmaintenanceA Discord MCP server that gives AI agents full control of a Discord bot — messages, channels, roles, threads, forums, events, webhooks, reactions, moderation, image generation, and real-time voice.65 npm6MIT
- FlicenseBqualityCmaintenanceMCP server for building a user-approved transcript corpus from Handy, optimizing post-processing prompts against LM Studio, and promoting winning inference settings.19-
- AlicenseAqualityCmaintenanceMCP server for YouTubeTranscript.dev — extract transcripts, manage history, and power AI assistants with YouTube content.597 npmMIT
Glama MCP Gateway
Add one secure layer between your agents and this server.