Interactive MCP Server

A MCP Server implemented in Node.js/TypeScript, facilitating interactive communication between LLMs and users. **Note:** This server is designed to

Local serverstdioTypeScript

What is the Interactive MCP MCP server?

Interactive mcp mcp server connects Interactive MCP to AI assistants that speak the Model Context Protocol. A MCP Server implemented in Node.js/TypeScript, facilitating interactive communication between LLMs and users. Note: This server is designed to run locally alongside the MCP client (e.g., Claude Desktop, VS Code), as it needs direct access to the user's operating system to display notifications.

What Interactive MCP does

A MCP Server implemented in Node.js/TypeScript, facilitating interactive communication between LLMs and users. Note: This server is designed to run locally alongside the MCP client (e.g., Claude Desktop, VS Code), as it needs direct access to the user's operating system to display notifications and command-line prompts.

Tools it exposes

Once connected, the assistant can call these 9 tools directly:

  • request_user_input — Asks the user a question and returns their answer. Can display predefined options
  • message_complete_notification — Sends a simple OS notification
  • start_intensive_chat — Initiates a persistent command-line chat session
  • ask_intensive_chat — Asks a question within an active intensive chat session
  • stop_intensive_chat — Closes an active intensive chat session
  • Build — ** pnpm build
  • Lint — ** pnpm lint
  • Format — ** pnpm format
  • Prerequisites — The Prerequisites tool exposed by this server

Installing the interactive mcp mcp server

The server is distributed via npm as pnpm, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Requirements

  • Node.js: Check package.json for version compatibility. - pnpm: Used for package management. Install via npm install -g pnpm after installing Node.js.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Interactive MCP sits in that group, and the shape of its toolset — request_user_input, message_complete_notification, start_intensive_chat among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • With 9 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Interactive MCP.
  • Maintained by ttommyth, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the interactive mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
request_user_inputAsks the user a question and returns their answer. Can display predefined options.
message_complete_notificationSends a simple OS notification.
start_intensive_chatInitiates a persistent command-line chat session.
ask_intensive_chatAsks a question within an active intensive chat session.
stop_intensive_chatCloses an active intensive chat session.
Build** pnpm build
Lint** pnpm lint
Format** pnpm format
PrerequisitesThe Prerequisites tool exposed by this server.

How to install the Interactive MCP MCP server

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

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js: Check package.json for version compatibility. - pnpm: Used for package management. Install via npm install -g pnpm after installing Node.js.

Example prompts to try

  • Use Interactive MCP to request user input.
  • Use Interactive MCP to message complete notification.
  • Use Interactive MCP to start intensive chat.

Frequently asked questions

It connects Interactive MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (request_user_input, message_complete_notification, start_intensive_chat, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Interactive MCP directly.