mcp-confirm
Version:
Minimal MCP server that exposes a single 'proceed' tool returning 'Proceed'.
41 lines (29 loc) • 1.24 kB
Markdown
# mcp-confirm
Minimal MCP server exposing a single `proceed` tool that returns the text "Proceed".
[<img src="https://img.shields.io/badge/VS_Code-VS_Code?style=flat-square&label=Install%20Server&color=0098FF" alt="Install in VS Code">](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522confirm%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522mcp-confirm%2522%255D%257D) [<img alt="Install in VS Code Insiders" src="https://img.shields.io/badge/VS_Code_Insiders-VS_Code_Insiders?style=flat-square&label=Install%20Server&color=24bfa5">](https://insiders.vscode.dev/redirect?url=vscode-insiders%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522confirm%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522mcp-confirm%2522%255D%257D)
## Usage
Run directly with npx (no install required):
```
npx mcp-confirm
```
Or add it to your MCP client config. For example, in a `mcp.json`:
```jsonc
{
"servers": {
"confirm": {
"type": "stdio",
"command": "npx",
"args": ["mcp-confirm"]
}
}
}
```
You can also install globally:
```
npm i -g mcp-confirm
mcp-confirm
```
## Requirements
- Node.js 18+
## License
MIT