The Divide and Conquer MCP Server is a Model Context Protocol (MCP) server that enables AI agents to break down complex tasks into manageable pieces using a structured JSON format.
To use the server, add it to your MCP configuration and initialize tasks using the provided tools. You can create tasks, add checklist items, and track progress through structured commands.
Use these steps to connect Divide and Conquer MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"divide-and-conquer-mcp-server-landicefu": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-divide-and-conquer-mcp-server-landicefu"
]
}
}
}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": {
"divide-and-conquer-mcp-server-landicefu": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-divide-and-conquer-mcp-server-landicefu"
]
}
}
}Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"divide-and-conquer-mcp-server-landicefu": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-divide-and-conquer-mcp-server-landicefu"
]
}
}
}Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
Yes! It is designed to handle a variety of tasks, especially those that require breaking down into smaller parts.
The server is built with JavaScript and can be integrated into any JavaScript-based environment.
The server includes built-in functionality to monitor task completion and visualize progress.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":2574,"uuid":"549bedc5-1db4-4e4e-9470-39a4364752cc","name":"divide-and-conquer-mcp-server","title":"Divide and Conquer MCP Server","description":"","avatar_url":"https://avatars.githubusercontent.com/u/375642?v=4","created_at":"2025-03-13T08:52:59.585Z","updated_at":"2025-03-18T21:57:04.888Z","status":"created","author_name":"landicefu","author_avatar_url":"https://avatars.githubusercontent.com/u/375642?v=4","tags":"divide-and-conquer,mcp-server,task-management","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/landicefu/divide-and-conquer-mcp-server","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":"{\"star\":\"0\",\"license\":\"MIT license\",\"language\":\"JavaScript\",\"is_official\":false,\"latest_commit_time\":\"2025-03-11 18:15:42\"}","user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]
.vscode/mcp.json
{
"servers": {
"divide-and-conquer-mcp-server-landicefu": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-divide-and-conquer-mcp-server-landicefu"
]
}
}
}Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"divide-and-conquer-mcp-server-landicefu": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-divide-and-conquer-mcp-server-landicefu"
]
}
}
}Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"divide-and-conquer-mcp-server-landicefu": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-divide-and-conquer-mcp-server-landicefu"
]
}
}
}