# elicitly [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/elicitly/elicitly  
**GitHub Stars:** 1  
**npm Downloads (last month):** 1383  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/elicitly

## Description
Human-in-the-loop for AI agents over MCP elicitation: confirm/form dialogs plus a capability doctor

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "elicitly": {
    "command": "npx",
    "args": ["-y","elicitly"]
  }
}
```

## Documentation & README

# Elicitly — Free Edition

[![npm — elicitly](https://img.shields.io/npm/v/elicitly?label=elicitly)](https://www.npmjs.com/package/elicitly)
[![npm — @elicitly/tools](https://img.shields.io/npm/v/%40elicitly%2Ftools?label=%40elicitly%2Ftools)](https://www.npmjs.com/package/@elicitly/tools)
[![CI](https://github.com/elicitly/elicitly/actions/workflows/ci.yml/badge.svg)](https://github.com/elicitly/elicitly/actions/workflows/ci.yml)
[![Coverage](https://codecov.io/gh/elicitly/elicitly/graph/badge.svg)](https://codecov.io/gh/elicitly/elicitly)
[![Docs](https://img.shields.io/badge/docs-elicitly.ai-blue)](https://www.elicitly.ai/docs/)
[![License: Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-green)](./LICENSE)

**Your AI has questions. Your users have answers.** Elicitly connects them —
human-in-the-loop for prompts and [Agent Skills](https://agentskills.io/) over
[MCP elicitation](https://modelcontextprotocol.io/docs/learn/client-concepts).

This repository is the open-source **Free Edition**: the `elicitly` local MCP
server and the `@elicitly/tools` library. The hosted **Pro Edition** — durable
approvals with review pages, an audit trail, and organization dashboards —
lives at [elicitly.ai](https://www.elicitly.ai).

## Quick start

Run the local (stdio) MCP server straight from npm — no clone, no config:

    npx -y elicitly

Register it in your MCP host (Claude Code shown; any stdio host works):

    claude mcp add elicitly -- npx -y elicitly

Then ask your agent to call `elicit_confirm` ("Ship it?"), `elicit_form`
(your own JSON schema), or `elicit_doctor` (does this host actually support
elicitation?).

## Packages

| Package | What it is |
| --- | --- |
| [`elicitly`](https://github.com/elicitly/elicitly/blob/HEAD/packages/elicitly) | The local stdio MCP server (`npx -y elicitly`) |
| [`@elicitly/tools`](https://github.com/elicitly/elicitly/blob/HEAD/packages/tools) | Embeddable toolkit: register the elicitation tools on **your own** `McpServer` |

## Why

MCP has a native answer for asking a human — elicitation — but host support is
inconsistent, and only an MCP *server* can trigger it. Nobody wants to roll
their own server just to ask a question. Elicitly is that server (or, via
`@elicitly/tools`, the toolkit inside yours), plus the diagnostic
(`elicit_doctor`) that makes real-world host support visible — feeding the
public [Support Matrix](https://www.elicitly.ai/docs/elicitation/support-matrix/).

## Develop

    pnpm install
    pnpm build        # tsdown builds both packages
    pnpm test         # vitest
    pnpm test:coverage # vitest + v8 coverage (thresholds enforced; HTML report in coverage/)
    pnpm typecheck    # tsc
    pnpm check        # biome

## License

[Apache-2.0](https://github.com/elicitly/elicitly/blob/HEAD/LICENSE)

