Askme MCP Server

Ask-Me MCP - Human-in-the-Loop Model Context Protocol Server

Local serverstdioTypeScript

What is the Askme MCP MCP server?

Askme mcp mcp server lets Claude, Cursor and other MCP clients work with Askme MCP directly. Ask-Me MCP - Human-in-the-Loop Model Context Protocol Server.

What Askme MCP does

AskMeMCP is a Model Context Protocol (MCP) server that enables AI assistants to request human input through a web interface. It implements multiple interactive tools (ask-one-question, ask-multiple-choice, challenge-hypothesis, choose-next), allowing MCP clients like Claude Code to pause execution and wait for human responses.

Key capabilities

  • stdio Transport — Direct integration with Claude Code and other MCP clients
  • Self-Contained Server — Serves Angular UI statically - no separate UI server needed
  • Dynamic Port Allocation — Automatically finds available port if default is in use
  • Automatic Browser Opening — Opens UI automatically when requests arrive
  • Real-time Updates — Server-Sent Events for live communication
  • Multiple Tool Types — Single questions, multiple choice, hypothesis challenges, and decision workflows

Tools it exposes

Once connected, the assistant can call this tool directly:

  • Cursor — Add to your Cursor settings (in .cursor/mcp_settings.json in your project root):

Installing the askme mcp mcp server

The server is distributed via npm as without, 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.

Where it fits

Browser automation servers are the ones people reach for when a site has no API — the assistant drives a real page instead of guessing at endpoints. Askme MCP sits in that group, and the shape of its toolset — Cursor — tells you what it is really for. Worth comparing against the other browser automation 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.
  • Maintained by thlandgraf, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the askme 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
CursorAdd to your Cursor settings (in .cursor/mcp_settings.json in your project root):

How to install the Askme MCP MCP server

{
  "mcpServers": {
    "ask-me": {
      "command": "npx",
      "args": ["--yes", "ask-me-mcp"]
    }
  }
}

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

Example prompts to try

  • Use Askme MCP to Cursor.

Frequently asked questions

It connects Askme MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Cursor) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Askme MCP directly.