drio
Open app

mcp-prompt

Source

discover prompt

Catalog onlyCatalog onlySTDIO

Overview

MCP-prompt is a task management tool that utilizes the Model Context Protocol (MCP) to provide access to task management APIs.

To use MCP-prompt, install the necessary dependencies using npm and run the server with the command 'node server.js'. This server will communicate with MCP clients using standard input/output (stdio).

  • Retrieve a list of all tasks - Get details of specific tasks by name
  1. Managing and organizing tasks in a development environment.
  2. Integrating with other tools that support MCP for enhanced task management.
  3. Automating task retrieval and management processes in applications.

Add to your AI client

Use these steps to connect mcp-prompt in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-prompt-manager-ceeon": {
      "command": "npx",
      "args": [
        "@chengfeng2025/mcp-task-api"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-prompt-manager-ceeon": {
      "command": "npx",
      "args": [
        "@chengfeng2025/mcp-task-api"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-prompt-manager-ceeon": {
      "command": "npx",
      "args": [
        "@chengfeng2025/mcp-task-api"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-prompt-manager-ceeon": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "@chengfeng2025/mcp-task-api"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-prompt-manager-ceeon": {
      "command": "npx",
      "args": [
        "@chengfeng2025/mcp-task-api"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-prompt-manager-ceeon": {
      "command": "npx",
      "args": [
        "@chengfeng2025/mcp-task-api"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol (MCP)?

MCP is a protocol designed to facilitate communication between task management tools and clients.

How do I install MCP-prompt?

You can install MCP-prompt by running 'npm install' in your terminal.

Can I customize the task management features?

Yes! MCP-prompt can be extended and customized based on your specific requirements.