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

kaboink-mcp

v1.0.1

Published

MCP server for Kaboink - AI text humanization for LLMs

Readme

Kaboink MCP Server

An MCP (Model Context Protocol) server for Kaboink - AI text humanization. This allows LLMs to analyze text for AI detection risk and humanize text to make it appear more human-written.

Installation

npm install -g kaboink-mcp

Or use npx directly:

npx kaboink-mcp

Configuration

Set your Kaboink API key as an environment variable:

export KABOINK_API_KEY=kabo_your_api_key_here

Optionally, set a custom API URL (defaults to https://kabo.ink):

export KABOINK_API_URL=https://your-custom-url.com

Usage with Cursor

Add to your Cursor MCP settings (~/.cursor/mcp.json):

{
  "mcpServers": {
    "kaboink": {
      "command": "npx",
      "args": ["kaboink-mcp"],
      "env": {
        "KABOINK_API_KEY": "kabo_your_api_key_here"
      }
    }
  }
}

Usage with Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "kaboink": {
      "command": "npx",
      "args": ["kaboink-mcp"],
      "env": {
        "KABOINK_API_KEY": "kabo_your_api_key_here"
      }
    }
  }
}

Available Tools

analyze_text

Analyze text for AI detection risk.

Parameters:

  • text (required): The text to analyze

Returns:

  • ai_detection_score: Risk score from 0-100 (higher = more likely AI-generated)
  • risk_level: "low", "medium", or "high"
  • metrics: Word count, sentence stats, lexical diversity, readability grade
  • indicators: AI-specific markers (dash count, AI phrases, certainty language)

Example:

Analyze this text for AI detection: "The implementation of this solution demonstrates a comprehensive approach..."

humanize_text

Transform text to reduce AI detection risk while preserving meaning.

Parameters:

  • text (required): The text to humanize
  • humanization_intensity (optional): 0-100, default 75. Higher = more changes
  • formality_level (optional): 0-100, default 50. Lower = casual, higher = formal
  • sentence_variation (optional): 0-100, default 50. Sentence structure variety
  • vocab_diversity (optional): 0-100, default 50. Vocabulary variety
  • remove_dashes (optional): Replace em-dashes (default: true)
  • replace_ai_phrases (optional): Replace AI phrases (default: true)
  • add_contractions (optional): Add contractions (default: true)
  • vary_sentence_starts (optional): Vary sentence beginnings (default: true)
  • add_discourse_markers (optional): Add transition words (default: true)
  • add_hedging (optional): Add hedging language (default: true)
  • diversify_punctuation (optional): Vary punctuation (default: true)

Returns:

  • humanized_text: The transformed text
  • score_before: Original AI detection score
  • score_after: New AI detection score
  • improvement: Points reduced
  • settings_used: Applied settings
  • formula_stats: Changes made by category

Example:

Humanize this text with high intensity: "Furthermore, it is important to note that the implementation provides significant benefits..."

API Key

Get your API key from your Kaboink profile page after signing up.

License

MIT