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

@questlang/mcp-server

v0.5.7

Published

MCP server for AI-powered i18n file translation. Translates JSON, CSV, Android XML, iOS .strings, PO, and XLIFF into 29 languages.

Readme

@questlang/mcp-server

MCP server for AI-powered translation of i18n/localization files. Works with Claude Code, Cursor, and VS Code.

Quick Start

npx -y @questlang/mcp-server init

This creates:

  • .mcp.json — MCP server configuration for your IDE
  • .claude/commands/translate.md — the /translate skill for Claude Code

Setup

  1. Create an account at questlang.ru
  2. Get an API key from API Keys
  3. Set the key:
export QUESTLANG_API_KEY=ql_your_key_here

Or paste it into the QUESTLANG_API_KEY field in .mcp.json.

Usage

In Claude Code, use the /translate slash command:

/translate Spanish, French, Japanese

Or ask in natural language:

Scan my project for localization files and translate them to Spanish

Supported Formats

| Format | Extensions | |--------|-----------| | JSON / ARB | .json, .arb | | CSV | .csv | | Android XML | strings.xml | | iOS Strings | .strings | | GNU gettext | .po, .pot | | XLIFF | .xliff, .xlf |

Available MCP Tools

| Tool | Description | |------|-------------| | questlang_scan_i18n_files | Scan directory for i18n files | | questlang_check_balance | Check token balance | | questlang_estimate_cost | Estimate translation cost | | questlang_translate_file | Submit file for translation | | questlang_get_order_status | Check translation status | | questlang_list_orders | List recent orders | | questlang_update_glossary | Add glossary terms | | questlang_request_review | Request AI quality review | | questlang_get_review | Get review report |

20 Languages

English, Russian, Spanish, French, German, Chinese (Simplified), Chinese (Traditional), Japanese, Korean, Arabic, Portuguese, Italian, Turkish, Hindi, Dutch, Polish, Swedish, Greek, Hebrew, Indonesian, Thai.

Manual Setup

If you prefer to configure manually, add to .mcp.json in your project root:

{
  "mcpServers": {
    "questlang": {
      "command": "npx",
      "args": ["-y", "@questlang/mcp-server"],
      "env": {
        "QUESTLANG_API_KEY": "ql_your_key_here"
      }
    }
  }
}

License

MIT