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

lexilint-mcp

v1.1.0

Published

Spell and grammar checking for AI assistants via Model Context Protocol. Works with Claude Desktop, ChatGPT, Cursor, and more. 100% offline spell check, BYOK grammar check.

Readme

LexiLint MCP Server

Spell and grammar checking for AI assistants (Claude, ChatGPT, Cursor, etc.) via the Model Context Protocol.

Free: Spell check — 100% offline, no API key, no data leaves your machine. Premium: Grammar check — uses your own API key (BYOK). Google Gemini has a free tier.


Install

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "lexilint": {
      "command": "npx",
      "args": ["lexilint-mcp"]
    }
  }
}

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Other MCP clients

npx lexilint-mcp

Tools

spell_check — Free, 100% offline

Check text for spelling errors. No API key needed. Supports en-US and en-GB.

Input:
  text      string   Text to spell-check
  language  string   "en-US" or "en-GB" (default: "en-US")

Output:
  List of spelling errors with word, offset, and suggestions

grammar_check — Requires API key (BYOK)

Check text for grammar, style, and clarity issues using your own AI provider.

Input:
  text      string   Text to grammar-check
  provider  string   "gemini" | "openai" | "anthropic"
  api_key   string   Your API key for the selected provider
  language  string   Language code, e.g. "en-US", "fr", "de" (default: "en-US")

Output:
  List of issues with type, severity, original text, and suggestion

Getting a free Gemini API key:

  1. Go to aistudio.google.com
  2. Click "Get API key"
  3. No credit card required

check_text — Combined (spell always free, grammar optional)

Run spell check and optionally grammar check in one call.

Input:
  text      string   Text to check
  language  string   Language code (default: "en-US")
  provider  string   Optional — omit to skip grammar check
  api_key   string   Required if provider is set

Output:
  Spell check results + grammar results (if provider/api_key provided)

Privacy

  • Spell check: 100% local. Zero network requests. Your text never leaves your machine.
  • Grammar check: Your text goes directly from your machine to your chosen AI provider (Google, OpenAI, or Anthropic). LexiLint never sees it. This is BYOK — you authenticate with your own key.

Free vs Premium

| Feature | Free | Premium ($2.99/mo or $29.99 lifetime) | |---|---|---| | Spell check (en-US, en-GB) | ✅ Offline, unlimited | ✅ | | Grammar check with Gemini | ✅ BYOK — free key at aistudio.google.com | ✅ | | Multi-language spell check | ❌ | ✅ es, fr, de, ru, pl, tr | | Multi-language grammar | ❌ | ✅ | | OpenAI GPT-4 grammar | ❌ | ✅ BYOK | | Anthropic Claude grammar | ❌ | ✅ BYOK | | Custom AI model selection | ❌ | ✅ |

Get Premium: https://igniteapp.net/lexilint#premium


Also available as a Chrome Extension

LexiLint for Chrome — check spelling and grammar on any webpage, including localhost and staging sites.