npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

biz-journals-mcp

v1.0.0

Published

MCP server for generating Scopus ISSN queries based on journal rankings (ABDC, AJG, FT50)

Readme

biz-journals-mcp

MCP server for generating Scopus ISSN boolean queries based on journal rankings.

Supported Rankings

| System | Grades (highest to lowest) | Year | |--------|---------------------------|------| | ABDC | A*, A, B, C | 2022 | | AJG | 4*, 4, 3, 2, 1 | 2021 | | FT50 | FT-50 | 2016 |

Installation

npm install -g biz-journals-mcp

Configuration

Add to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "biz-journals": {
      "command": "npx",
      "args": ["-y", "biz-journals-mcp"]
    }
  }
}

Tools

generate_scopus_query

Generates a Scopus boolean query of ISSN numbers.

Parameters:

  • filters - Array of ranking filters:
    • system - "abdc", "ajg", or "ft50"
    • grade - Target grade (e.g., "A*", "4*", "FT-50")
    • operator - "at_least" (default) or "exactly"
    • fields - Optional array of disciplines to filter by

Example output:

(ISSN(0001-4826) OR ISSN(0361-3682) OR ISSN(0165-4101) OR ISSN(0021-8456))

list_grades

Lists available grades for a ranking system.

list_fields

Lists available fields/disciplines for a ranking system.

Example Queries

Get ABDC A-level or higher journals in Accounting:

{
  "filters": [{
    "system": "abdc",
    "grade": "A",
    "operator": "at_least",
    "fields": ["Accounting"]
  }]
}

Combine rankings (ABDC A* OR AJG 4*):

{
  "filters": [
    { "system": "abdc", "grade": "A*", "operator": "exactly" },
    { "system": "ajg", "grade": "4*", "operator": "exactly" }
  ]
}

License

MIT