citeguard
Server Details
Verify citations in AI text: fetches each cited source, returns verdicts with evidence quotes.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Franksterino/citeguard
- GitHub Stars
- 0
- Server Listing
- CiteGuard
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.1/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: check_document audits the entire document, check_links focuses solely on link liveness, and verify_claims evaluates individual claim-source pairs with detailed verdicts. There is no meaningful overlap that would cause an agent to pick the wrong tool.
All tool names follow the verb_noun pattern (check_document, check_links, verify_claims), but the mix of 'check' and 'verify' as verbs is a minor inconsistency. The structure is predictable and readable overall.
With 3 tools, the server is well-scoped for its purpose. Each tool earns its place and covers a distinct aspect of citation checking without unnecessary bloat.
The core workflows are covered: whole-document auditing, link validation, and claim verification. Minor gaps exist, such as no standalone URL liveness check or a tool to parse citations independently, but these are workable with the current set.
Available Tools
3 toolscheck_documentAInspect
Audit every citation in a markdown/plain-text document: extracts claim+source pairs (markdown links, footnotes, DOIs, bare URLs), verifies each against the fetched source, and returns a report with a citation integrity score (0-100).
| Name | Required | Description | Default |
|---|---|---|---|
| document | Yes | Document text (markdown or plain text) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses the core behavior (extracts claim+source pairs, verifies each, returns a score) but lacks details on failure modes, network requirements, rate limits, or side effects. This is useful but not fully transparent.
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, information-dense sentence. It front-loads the core purpose ('Audit every citation') and then efficiently lists what it extracts, how verification works, and what it returns. No wasted 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 single-parameter tool with no annotations and no output schema, the description covers the key aspects: input, extraction, verification, and output score. It is slightly incomplete in not describing the report format or edge-case behavior, but overall it provides enough context for basic use.
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 100% for the single 'document' parameter, so the schema already provides the meaning. The description repeats 'markdown/plain-text' but adds no additional semantic detail beyond the schema, hence baseline score.
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 function: 'Audit every citation in a markdown/plain-text document'. It specifies the resource (document), the action (audit), and the scope (every citation), and distinguishes from siblings by detailing extract+verify+report behavior.
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 implies usage: when you have a markdown/plain-text document with citations and want a comprehensive audit. It provides a clear context but does not explicitly discuss when to use this tool over siblings like check_links or verify_claims, nor any exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_linksAInspect
Liveness-only check (no LLM): extracts all cited URLs and reports dead links, homepage redirects, and archive.org availability.
| Name | Required | Description | Default |
|---|---|---|---|
| document | Yes | Document text (markdown or plain text) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It offers substantive transparency by revealing that the check is liveness-only, does not use an LLM, extracts URLs from citations, and reports dead links, homepage redirects, and archive.org availability. It does not mention return format or network behavior, but the core execution model is well conveyed for a simple read-only tool.
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, compact sentence that is front-loaded with 'Liveness-only check (no LLM)' and efficiently conveys the tool's scope and outputs. No wasted words; every phrase adds information.
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 tool with one parameter and no output schema, the description adequately covers the tool's behavior and purpose. Missing return format details are a minor gap, but the explanation of what it reports (dead links, homepage redirects, archive.org availability) gives a clear picture of expected results. Given the tool's simplicity and read-only nature, this is nearly complete.
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% with the only parameter 'document' described as 'Document text (markdown or plain text)'. The description adds no additional syntax or format details beyond the schema, but it does clarify that the document contains citations, which aligns with the schema. The baseline 3 is appropriate since the schema fully documents the parameter.
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 function: a liveness-only check that extracts cited URLs and reports dead links, homepage redirects, and archive.org availability. It uses a specific verb ('extracts'/'reports') and resource ('cited URLs'), and it distinguishes itself from sibling tools by focusing on link health rather than overall document quality or claim verification.
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 implies usage context through 'Liveness-only check (no LLM)', suggesting it is for quick, deterministic link checking. However, it does not explicitly state when to use it versus check_document or verify_claims, nor does it provide any exclusions or alternative guidance. The context is clear but not directly compared to siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_claimsAInspect
Verify claim+source pairs: fetches each cited URL and returns a per-claim verdict (supported / partially_supported / contradicted / unsupported / uncertain / could_not_fetch) with a quoted evidence span from the source.
| Name | Required | Description | Default |
|---|---|---|---|
| claims | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations available, the description carries the full burden of behavioral disclosure. It transparently states that the tool fetches each cited URL and returns a per-claim verdict with a quoted evidence span. Minor omissions like network failure handling are partially covered by the 'could_not_fetch' verdict, but rate limits or side effects are not mentioned.
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?
A single sentence packs all essential information: input, action, output format, and outcome categories. There is no filler or redundant repetition of schema details, making it highly concise and front-loaded.
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?
The description is largely complete for a tool with moderate complexity and no output schema: it explains the input structure, the fetch process, the verdict taxonomy, and the evidence span. It could add operational context (e.g., latency, external request behavior, or what happens when no evidence is found), but the core functionality is sufficiently covered.
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 top-level schema description coverage is 0%, so the description is expected to compensate. It conveys that the input is a list of claim+source pairs, which maps to the 'text' and 'source' subfields, but it does not mention the optional 'context' field or array constraints. The nested schema descriptions help, but the description alone is incomplete for parameter understanding.
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 ('Verify') and resource ('claim+source pairs'), and lists exact verdict categories, making its purpose immediately clear. It also distinguishes itself from sibling tools ('check_document', 'check_links') by focusing on per-claim verification with evidence spans.
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 clearly implies when to use the tool: when you have claim+source pairs to verify. However, it does not explicitly state alternatives or exclusion criteria (e.g., 'use check_document for full-document checking'), so it lacks an explicit contrast with sibling tools.
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!
Related MCP Servers
- AlicenseAqualityBmaintenanceVerifies factual claims against live sources and returns a verdict, confidence score, and citations for any agent to use before stating uncertain facts.6MIT
- Alicense-qualityFmaintenanceVerifies claims with verdicts (supported/disputed/unverifiable), confidence scores, and cited sources by cross-referencing FoundryNet Data Network and web search.MIT
- Alicense-qualityBmaintenanceEnables agents to verify their own output mid-task by checking every claim against provided sources, returning supported, partial, unsupported, or contradicted verdicts with exact citations.MIT
- Alicense-qualityCmaintenanceVerifies citations in reference lists by checking DOIs against public registries to catch AI-hallucinated or mismatched citations.MIT
Your Connectors
Sign in to create a connector for this server.