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

dbpia-mcp

v0.1.9

Published

DBpia MCP server for Korean academic paper search, citation generation, and fulltext indexing

Readme

dbpia-mcp

npm version License: MIT

한국어 | English

MCP server for DBpia - Korea's largest academic paper database.

This server allows LLMs to search for academic papers, generate citations, cache results locally, and even index PDF content for full-text search.

Features

  • Search: Keyword and advanced search (author, publisher, journal)
  • Top Papers: Browse popular/highly-rated papers by category/date
  • Citation: Generate citations in Chicago, APA, MLA, BibTeX, Harvard, Vancouver
  • Open in Browser: Open article pages directly in your default browser
  • Local Cache: SQLite storage for offline access and export (7-day default cache)
  • Export: Export cached data to JSONL format

Installation

npx dbpia-mcp@latest

API Key Setup

  1. Visit DBpia Open API Portal
  2. Register and get your API key from Key Management

Configuration

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | DBPIA_API_KEY | Required. Your DBpia Open API Key | - | | DBPIA_BUSINESS_API_KEY | Optional. Required for dbpia_detail tool | - | | DBPIA_DB_PATH | Directory for SQLite database | ~/.dbpia-mcp | | DBPIA_DEBUG | Enable verbose logging | false | | DBPIA_QUERY_TTL_DAYS | Days to keep search results in cache | 7 |

OpenCode / Claude Desktop Configuration

Add this to your opencode.json or claude_desktop_config.json:

{
  "mcpServers": {
    "dbpia": {
      "command": "npx",
      "args": ["dbpia-mcp@latest"],
      "env": {
        "DBPIA_API_KEY": "your_api_key_here"
      }
    }
  }
}

Tools

Search & Discovery

| Tool | Description | Arguments | |------|-------------|-----------| | dbpia_search | Simple keyword search | searchall (required), page, pagecount, refresh | | dbpia_search_advanced | Search with specific fields | searchall, searchauthor, searchpublisher, searchbook, page, pagecount | | dbpia_top_papers | Get popular papers | pyear, pmonth (req if pyear used), category, page, pagecount | | dbpia_local_search | Search downloaded cache | query (required), remoteFallback (bool) |

Utilities

| Tool | Description | Arguments | |------|-------------|-----------| | dbpia_open | Open article in browser | articleId (required) | | dbpia_cite | Generate citation | articleId (required), style (chicago, apa, mla, bibtex, etc.) | | dbpia_export | Export cache to JSONL | outputPath (required) | | dbpia_detail | Get detailed metadata | id (required) - Requires Business API Key |

Usage Examples

1. Search for Papers

User Prompt:

"Find papers about 'Artificial Intelligence' published in 2024."

Tool Call:

dbpia_search(searchall: "Artificial Intelligence", pyear: "2024")

2. Get a Citation

User Prompt:

"Generate an APA citation for the first paper."

Tool Call:

dbpia_cite(articleId: "NODE12345678", style: "apa")

3. Open Paper in Browser

User Prompt:

"Open the detail page for this paper."

Tool Call:

dbpia_open(articleId: "NODE12345678")

License

MIT