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

malarky-mcp

v1.0.1

Published

MCP server for Malarky - generate syntactically plausible English nonsense from any LLM

Readme

malarky-mcp

MCP server for Malarky -- generate syntactically plausible English nonsense from any LLM.

Works with Claude Desktop, Claude Code, Cursor, and any other MCP-compatible client.

Quick Start

npx malarky-mcp

Claude Desktop

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

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

Claude Code

claude mcp add malarky -- npx malarky-mcp

Tools

generate_sentence

Generate one or more sentences of syntactically plausible English nonsense.

| Parameter | Type | Description | | ----------- | ------ | ------------------------------------------------ | | seed | number | RNG seed for deterministic output | | type | string | Sentence structure (see list_sentence_types) | | count | number | Number of sentences (1-50, default: 1) | | minWords | number | Minimum words per sentence | | maxWords | number | Maximum words per sentence | | hints | string | Comma-separated tags (e.g. domain:tech) | | transforms| string | Comma-separated transform IDs (e.g. pigLatin) | | archetype | string | Archetype name from the lexicon | | lexicon | string | Lexicon JSON string for custom vocabulary | | lexiconPath | string | Absolute path to a lexicon JSON file on disk | | config | string | Generator config JSON (see list_config) |

generate_paragraph

Generate one or more paragraphs.

| Parameter | Type | Description | | -------------- | ------ | ----------------------------------------- | | seed | number | RNG seed for deterministic output | | count | number | Number of paragraphs (1-20, default: 1) | | sentences | number | Fixed sentences per paragraph | | minSentences | number | Minimum sentences per paragraph | | maxSentences | number | Maximum sentences per paragraph | | hints | string | Comma-separated tags | | transforms | string | Comma-separated transform IDs | | archetype | string | Archetype name from the lexicon | | lexicon | string | Lexicon JSON string for custom vocabulary | | lexiconPath | string | Absolute path to a lexicon JSON file on disk | | config | string | Generator config JSON (see list_config) |

generate_text

Generate a text block (multiple paragraphs).

| Parameter | Type | Description | | --------------- | ------ | ----------------------------------------- | | seed | number | RNG seed for deterministic output | | paragraphs | number | Fixed number of paragraphs | | minParagraphs | number | Minimum paragraphs | | maxParagraphs | number | Maximum paragraphs | | hints | string | Comma-separated tags | | transforms | string | Comma-separated transform IDs | | archetype | string | Archetype name from the lexicon | | lexicon | string | Lexicon JSON string for custom vocabulary | | lexiconPath | string | Absolute path to a lexicon JSON file on disk | | config | string | Generator config JSON (see list_config) |

morphology

Apply English morphology operations to a word.

| Parameter | Type | Required | Description | | ----------- | ------ | -------- | ----------------------------------------------------------------------------------------------------- | | word | string | yes | The word to transform | | operation | string | yes | One of: pluralize, singularize, pastTense, pastParticiple, presentParticiple, thirdPerson, indefiniteArticle |

Examples:

| Input | Output | | ---------------------------------------- | ------------ | | word: "synergy", operation: "pluralize" | synergies | | word: "go", operation: "pastTense" | went | | word: "run", operation: "presentParticiple" | running | | word: "hour", operation: "indefiniteArticle" | an |

list_transforms

List all available output transforms. No parameters.

Available transforms: pigLatin, ubbiDubbi, leet, uwu, pirate, redact, emoji, mockCase, reverseWords, bizJargon.

list_sentence_types

List all available sentence structure types. No parameters.

Available types: simpleDeclarative, compound, introAdverbial, subordinate, interjection, question.

list_config

List all generator configuration options with types and defaults. No parameters.

validate_lexicon

Validate a lexicon JSON string or file and report errors or warnings. Provide either json or lexiconPath.

| Parameter | Type | Description | | ------------- | ------ | -------------------------------------------- | | json | string | The lexicon JSON string to validate | | lexiconPath | string | Absolute path to a lexicon JSON file on disk |

Development

git clone https://github.com/JPaulDuncan/malarky.git
cd malarky/mcp-server
npm install
npm run build

License

MIT