Skip to main content
Glama
jusi-aalto

biz-journals-mcp

by jusi-aalto

generate_scopus_query

Generate a Scopus ISSN boolean query from journal rankings (ABDC, AJG, FT50) by applying grade thresholds and field filters to retrieve relevant journals.

Instructions

Generate a Scopus boolean query of ISSN numbers based on journal rankings.

Supports three ranking systems:

  • ABDC (Australian Business Deans Council): Grades A*, A, B, C (highest to lowest)

  • AJG (Academic Journal Guide): Grades 4*, 4, 3, 2, 1 (highest to lowest)

  • FT50 (Financial Times 50): Single grade FT-50

Use 'at_least' operator to include a grade and all higher grades (e.g., 'at_least A' includes A* and A). Use 'exactly' operator to include only the specified grade.

Multiple filters are combined with OR logic (union), and duplicate ISSNs are automatically removed.

Example: To get all ABDC A-level or higher journals in Accounting: { "filters": [{ "system": "abdc", "grade": "A", "operator": "at_least", "fields": ["Accounting"] }] }

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filtersYesArray of ranking filters to apply (combined with OR logic)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations present, the description carries the behavioral disclosure burden. It discloses important behavior: OR-logic union across filters, automatic duplicate ISSN removal, and the inclusive/exclusive semantics of operators. It does not mention output format or error behavior, but the core query-generation logic is transparent.

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 organized with a clear purpose statement, concise bullet lists, and a relevant example. Every sentence adds useful information, and the JSON example is an efficient way to communicate the expected input shape.

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 tool with no output schema and no annotations, the description covers the ranking systems, grade semantics, operator behavior, filter combination, and duplicate handling. It does not describe the output format, but that is a minor gap given the clear generate-a-query purpose.

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?

Schema coverage is 100%, so the baseline is 3, but the description adds meaningful value by spelling out grade sets per system, the grade-ordering semantics of 'at_least', and how filters combine. The worked example also clarifies the nested filter structure beyond the raw schema.

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 opens with a specific verb and object: 'Generate a Scopus boolean query of ISSN numbers based on journal rankings.' It further clarifies scope by enumerating the three supported ranking systems, which clearly distinguishes this tool from siblings like list_grades and list_fields.

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 description gives clear operating context: how to use 'at_least' vs 'exactly', how multiple filters combine, and a complete example. It does not explicitly contrast with sibling tools or state when not to use it, but the purpose is distinct enough that an agent can infer the right scenario.

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

Deploy Server

Other Tools