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

@blizzy/mcp-elicit

v0.2.0

Published

Elicitation MCP server

Readme

Elicitation MCP Server

This MCP server allows agents to request information directly from the user, such as text, numbers, etc.

Tools

  1. elicit_information

    • A tool to request information directly from the user, as a free-form text input
    • Inputs:
      • requestedInformationTitle (string): A concise title for the requested information
      • requestedInformationDescription (string, optional): An optional concise description for the requested information
    • Returns: Text content with user's response ("User answered with: {answer}"), or notification if user declined/canceled
  2. elicit_options

    • A tool to prompt the user to select from a list of options
    • Inputs:
      • requestedInformationTitle (string): A concise title for the requested information
      • requestedInformationDescription (string, optional): An optional concise description for the requested information
      • options (array of strings): An array of option values to choose from
      • optionNames (array of strings, optional): An optional array of human-readable names for the options. Must match the length and order of options if provided
    • Returns: Text content with user's selected option ("User answered with: {selection}"), or notification if user declined/canceled
  3. elicit_boolean

    • A tool to prompt the user for a Boolean response (yes/no, true/false, on/off etc.)
    • Inputs:
      • question (string): A concise question that can be answered with a Boolean response
      • questionDescription (string, optional): An optional concise description for the requested information
    • Returns: Text content with user's boolean response ("User answered with: true/false"), or notification if user declined/canceled
  4. elicit_number

    • A tool to prompt the user for a number input
    • Inputs:
      • requestedNumberTitle (string): A concise title for the requested number
      • requestedNumberDescription (string, optional): An optional concise description for the requested information
      • minimum (number, optional): An optional minimum value constraint
      • maximum (number, optional): An optional maximum value constraint
    • Returns: Text content with user's number input ("User answered with: {number}"), or notification if user declined/canceled
  5. elicit_date_time

    • A tool to prompt the user for a date or date-time input
    • Inputs:
      • requestedDateTimeTitle (string): A concise title for the requested date/time
      • requestedDateTimeDescription (string, optional): An optional concise description for the requested information
      • format (enum: "date" | "date-time", default: "date"): The format for the date/time input. 'date' for date only, 'date-time' for date and time
    • Returns: Text content with user's date/time input ("User answered with: {date}"), or notification if user declined/canceled
  6. elicit_email

    • A tool to prompt the user for an email address input
    • Inputs:
      • requestedEmailTitle (string): A concise title for the requested email
      • requestedEmailDescription (string, optional): An optional concise description for the requested information
    • Returns: Text content with user's email input ("User answered with: {email}"), or notification if user declined/canceled
  7. elicit_uri

    • A tool to prompt the user for a URI input
    • Inputs:
      • requestedUriTitle (string): A concise title for the requested URI
      • requestedUriDescription (string, optional): An optional concise description for the requested information
    • Returns: Text content with user's URI input ("User answered with: {uri}"), or notification if user declined/canceled

Usage with Claude Desktop (uses stdio Transport)

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "elicit": {
      "command": "npx",
      "args": [
        "-y",
        "@blizzy/mcp-elicit"
      ]
    }
  }
}

Usage with VS Code

For quick installation, use of of the one-click install buttons below.

Install with NPX in VS Code Install with NPX in VS Code Insiders

For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).

Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.

Note that the mcp key is not needed in the .vscode/mcp.json file.

NPX

{
  "mcp": {
    "servers": {
      "elicit": {
        "command": "npx",
        "args": ["-y", "@blizzy/mcp-elicit"]
      }
    }
  }
}

Running from source with HTTP+SSE Transport (deprecated as of 2025-03-26)

pnpm install
pnpm run start:sse

Run from source with Streamable HTTP Transport

pnpm install
pnpm run start:streamableHttp

Running as an installed package

Install

npm install -g @blizzy/mcp-elicit@latest

Run the default (stdio) server

npx @blizzy/mcp-elicit

Or specify stdio explicitly

npx @blizzy/mcp-elicit stdio

Run the SSE server

npx @blizzy/mcp-elicit sse

Run the streamable HTTP server

npx @blizzy/mcp-elicit streamableHttp

License

This package is licensed under the MIT license.