Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Elicitations Server

FreeNot checked

Elicitations Server — Model Context Protocol server

GitHubEmbed

About

Elicitations Server — Model Context Protocol server

README

A demonstration server that showcases elicitations across different Model Context Protocol (MCP) use cases. This server demonstrates how to collect user input dynamically using the MCP elicitation system.

What are Elicitations?

Elicitations allow MCP servers to request structured input from users during tool execution, enabling interactive and dynamic workflows.

Available MCP Components

Tools

  • greeting - Simple greeting tool that asks for your name
  • contact-info - Collects structured contact information (name, email, age)

Resources

  • config://user - User greeting resource that dynamically requests your name

Prompts

  • greeting-prompt - Generates a personalized greeting prompt based on your name

How It Works

Each component demonstrates elicitations in different contexts:

  1. Tools show how to collect input during tool execution
  2. Resources demonstrate dynamic content generation based on user input
  3. Prompts showcase how to create personalized prompts using elicited data

Running the Server

npm install
npm run build
npm start

The server will run on http://localhost:3000

Example Elicitation Schemas

Simple Name Request

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the user"
    }
  },
  "required": ["name"]
}

Contact Information Request

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Your full name"
    },
    "email": {
      "type": "string",
      "format": "email", 
      "description": "Your email address"
    },
    "age": {
      "type": "number",
      "minimum": 18,
      "description": "Your age"
    }
  },
  "required": ["name", "email"]
}

This demo showcases MCP elicitations for creating interactive, user-driven experiences across tools, resources, and prompts.

from github.com/QuantGeekDev/mcp-elicitations-server

Installing Elicitations Server

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/QuantGeekDev/mcp-elicitations-server

FAQ

Is Elicitations Server MCP free?

Yes, Elicitations Server MCP is free — one-click install via Unyly at no cost.

Does Elicitations Server need an API key?

No, Elicitations Server runs without API keys or environment variables.

Is Elicitations Server hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Elicitations Server in Claude Desktop, Claude Code or Cursor?

Open Elicitations Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Elicitations Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs