citation-verifier
Server Details
Cloudflare Workers MCP server: citation-verifier
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- lazymac2x/citation-verifier-api
- GitHub Stars
- 0
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 3.4/5 across 3 of 3 tools scored. Lowest: 2.8/5.
extract_citations and probe_url are clearly distinct, but verify_citations overlaps with both by combining extraction and URL probing. However, its purpose (trust score) makes it distinguishable, so there is only minor ambiguity.
All tool names follow a consistent verb_noun pattern with underscores: extract_citations, probe_url, verify_citations. No mixed conventions or inconsistent casing.
Three tools are well-scoped for a citation verification server. Each serves a necessary step in the workflow: extraction, URL probing, and combined verification with a trust score.
The server extracts DOIs and arXiv IDs but only probes URLs, leaving a notable gap: no tool verifies the non-URL citation types. The verification flow is thus incomplete for the full range of extracted citation types.
Available Tools
3 toolsextract_citationsBInspect
Extract URLs, paper refs, DOIs, arXiv ids, and statistics from text
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must carry full behavioral disclosure, but it only lists extraction types without describing output format, error handling, rate limits, or its read-only nature. The description adds no behavior beyond the operation itself, leaving a significant gap for a tool with no annotation coverage.
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, focused sentence that starts with the imperative 'Extract', making its purpose immediately clear. It contains no redundant details or filler, earning a high score for conciseness and front-loading.
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 tool is simple with one parameter and no output schema, but the description does not explain what the tool returns (e.g., a list of entities, a structured object, or how 'statistics' are presented). It also fails to note any limitations or edge-case handling. Without annotations or an output schema, this leaves the description incomplete for an agent to predict all behavior.
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 input schema has a single required 'text' string, and the description mentions 'from text', which gives some context about the parameter. However, schema description coverage is 0% and the description does not explain parameter constraints, format expectations, or additional semantics. It partially compensates but not fully.
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 extracts citation-related entities (URLs, paper refs, DOIs, arXiv IDs, statistics) from text, using the specific verb 'Extract' and a well-defined resource list. This distinguishes it from siblings like probe_url and verify_citations, which have different verbs and purposes.
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 the tool is used when one needs to extract these entities from text, but it does not explicitly state when to use it over alternatives or provide exclusions. It lacks guidance on when NOT to use this tool or how it relates to sibling tools like probe_url/verify_citations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
probe_urlAInspect
Probe a single URL for reachability and final destination
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It does convey that the tool checks reachability and follows redirects to a final destination, implying a non-destructive network operation. However, it omits details such as whether it actually fetches content, timeout behavior, or what exact response format is returned, leaving some ambiguity.
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, front-loaded with the primary action and resource, and contains no extraneous information. Every word contributes to understanding the tool's function.
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 single-parameter tool with no output schema, the description provides a complete high-level understanding of what the tool does: it checks reachability and reports the final destination after redirects. While it does not detail return structure, the tool is simple enough that the description is sufficient for selection and invocation.
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 input schema has a single 'url' parameter with no description, and schema coverage is 0%. The description explicitly refers to 'a single URL', which clarifies that the parameter expects a single URL string. This adds minimal meaning beyond the schema, but it does not specify URL format requirements (e.g., must include protocol), so it only partially compensates for the lack of schema detail.
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 ('probe') with a clear resource ('a single URL') and states the tool's purpose: checking reachability and finding the final destination. It distinguishes itself from the sibling tools, which focus on citations, making the tool's function unambiguous.
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 indicates the tool is for probing a single URL, which sets a clear usage context. However, it does not explicitly state when to use this tool over alternatives or provide exclusions, though the sibling tools are unrelated to URL probing, so the guidance is adequate without needing explicit alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_citationsCInspect
Extract + probe URLs + return trust score
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| probe_urls | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the burden of behavioral disclosure. It only says 'Extract + probe URLs + return trust score' without explaining what 'probe' entails (e.g., network requests, status checks), how the trust score is computed, or any side effects/rate limits. This is insufficient for a tool that likely performs network I/O.
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 very brief and front-loaded, but it is under-specified for a tool with two parameters and a non-trivial output. It omits essential details, making it more a terse summary than an effective, appropriately sized description.
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 tool's complexity (extraction + probing + trust score) and the lack of parameter descriptions, output schema, or annotations, the description is far from complete. The agent is left to guess how to invoke the tool correctly and interpret the result.
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 0%, and the description does not mention the 'text' or 'probe_urls' parameters. The agent receives no guidance on what these parameters mean, what format 'text' should be in, or how 'probe_urls' affects behavior.
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: extract citations, probe URLs, and return a trust score. This succinctly combines the operations of the sibling tools, distinguishing it as the integrated verification tool.
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 both extraction and probing are needed, but it does not explicitly name alternatives like extract_citations or probe_url, nor does it provide when/when-not guidance. The combination of 'extract' and 'probe' suggests a full verification workflow, but the agent must infer this.
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
- Flicense-qualityCmaintenanceA remote MCP server for reading, writing, and managing items in your Zotero library, deployed on Cloudflare Workers.1
- Alicense-qualityBmaintenanceDeployable stateless remote MCP server on Cloudflare Workers without auth, with support for registering custom tools and connecting to MCP clients.23MIT
- Flicense-qualityCmaintenanceA minimal MCP server template that runs on Cloudflare Workers + TypeScript, enabling quick creation of tools like calculations, API wrappers, and static data endpoints.7
- Flicense-qualityCmaintenanceMCP server on Cloudflare Workers with OAuth login, enabling remote tool calls like math operations from MCP clients.