Latest Threat ResearchGlassWorm Loader Hits Open VSX via Developer Account Compromise.Details
Socket
Book a DemoInstallSign in
Socket

@dennisk2025/acronym-expander

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dennisk2025/acronym-expander

MCP server that expands acronyms or abbreviations using a built-in list and suggests expansions for unknown acronyms.

latest
npmnpm
Version
1.0.0
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

Acronym Expander MCP Server

Expands acronyms or abbreviations into their possible full forms using a built-in list, and provides plausible expansion suggestions for unknown acronyms.

Features

  • Returns full forms for well-known acronyms (e.g. NASA, HTML).
  • Suggests possible expansions for unknown or custom acronyms based on common word patterns.
  • Production quality, fully compatible with Claude Desktop.

Installation

You can install and run with npx:

npx @dennisk2025/acronym-expander-mcp

Or install globally:

npm install -g @dennisk2025/acronym-expander-mcp
acronym-expander-mcp

Adding to Claude Desktop

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

{
  "mcpServers": {
    "acronym-expander": {
      "command": "npx",
      "args": ["@dennisk2025/acronym-expander-mcp"]
    }
  }
}
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Usage

Tool: expand_acronym

Expands a given acronym or abbreviation.

Parameters:

  • acronym (string, required): The acronym you want to expand.

Example Calls

Request:

{
  "tool": "expand_acronym",
  "arguments": { "acronym": "NASA" }
}

Response:

{
  "acronym": "NASA",
  "expansions": ["National Aeronautics and Space Administration"],
  "source": "built-in list"
}

Request:

{
  "tool": "expand_acronym",
  "arguments": { "acronym": "ZZZ" }
}

Response:

{
  "acronym": "ZZZ",
  "expansions": [],
  "suggestions": ["Z... Z... Z..."],
  "source": "suggested"
}

Available Tools

expand_acronym

  • Description: Returns possible full forms for a given acronym. If the acronym is not in the built-in list, suggests expansions based on word patterns.
  • Input Schema:
    • acronym (string, required): The acronym or abbreviation to expand (e.g., "NASA", "HTML").

License

MIT License

FAQs

Package last updated on 25 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts