Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
An MCP (Model Context Protocol) server that applies the **Divide and Conquer paradigm** to AI-driven task management DnC MCP — Divide and Conquer MCP Server An MCP (Model Context Protocol) server that applies the **Divide and Conquer paradigm** to AI-driven task management. Just like a D&C algorithm, you declare a complex goal, break it into smaller sub-tasks, review and adjust the plan, and then let the agent execute automatically. --- The Workflow The DnC workflow is built around a structured loop: **Declare → Divide → Review → A Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
@kanghohyeong/dnc-mcp is best for mcp, model-context-protocol, typescript workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
An MCP (Model Context Protocol) server that applies the **Divide and Conquer paradigm** to AI-driven task management DnC MCP — Divide and Conquer MCP Server An MCP (Model Context Protocol) server that applies the **Divide and Conquer paradigm** to AI-driven task management. Just like a D&C algorithm, you declare a complex goal, break it into smaller sub-tasks, review and adjust the plan, and then let the agent execute automatically. --- The Workflow The DnC workflow is built around a structured loop: **Declare → Divide → Review → A
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Kanghohyeong
Artifacts
0
Benchmarks
0
Last release
0.1.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/kanghohyeong/dnc-mcp.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Kanghohyeong
Protocol compatibility
MCP
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
text
┌─────────────────────────────────────────────────────────┐ │ DnC Workflow │ │ │ │ 1. User: "Plan this goal" │ │ ↓ │ │ 2. Agent: /init-root-task │ │ - Analyzes codebase │ │ - Calls dnc_init_task + dnc_append_divided_task │ │ - Builds task tree (L1/L2/L3 depth) │ │ ↓ │ │ 3. User: Review task plan (via Web UI) │ │ - Mark tasks as accept / modify / split / delete │ │ - Add custom instructions per task │ │ ↓ │ │ 4. Agent: /adjust-tasks │ │ - Reads review results │ │ - Applies modify / split / delete changes │ │ ↓ │ │ ◀── [Review ↔ Adjust loop repeats until plan is solid] ─┤ │ ↓ │ │ 5. User: "Conquer the tasks" │ │ ↓ │ │ 6. Agent: /conquer-tasks │ │ - Validates all tasks are past init status │ │ - Executes leaf tasks sequentially │ │ - Updates status in real-time │ │ ↓ │ │ 7. Done ✓ │ └─────────────────────────────────────────────────────────┘
bash
# From the interlock_mcp directory cp -r .claude/skills/init-root-task /your-project/.claude/skills/ cp -r .claude/skills/adjust-tasks /your-project/.claude/skills/ cp -r .claude/skills/conquer-tasks /your-project/.claude/skills/
text
┌─────────────────────┐
│ init │ ← Task just created, awaiting review
└──────────┬──────────┘
│ (user review)
┌──────────▼──────────┐
┌───▶│ accept │ ← Approved, ready to execute
│ └──────────┬──────────┘
│ │
│ ┌──────────▼──────────┐
│ │ in-progress │ ← Agent is currently working on it
│ └──────────┬──────────┘
│ │
│ ┌──────────▼──────────┐
│ │ done │ ← Completed
│ └─────────────────────┘
│
│ ┌─────────────────────┐
│ │ hold │ ← Paused, pending dependency or decision
└────┤ modify │ ← Needs goal/acceptance update → re-review
│ split │ ← Needs further decomposition → re-review
│ delete │ ← Marked for removal
└─────────────────────┘json
{
"task_title": "implement-user-auth",
"goal": "Implement JWT-based user authentication for the API",
"acceptance": "All auth endpoints pass tests; tokens expire in 24h; refresh flow works",
"status": "accept",
"additionalInstructions": "Use RS256 algorithm, not HS256",
"tasks": [
{
"task_title": "create-auth-middleware",
"goal": "Create Express middleware to validate JWT tokens",
"acceptance": "Middleware rejects invalid tokens with 401; attaches user to req.user",
"status": "accept",
"tasks": []
},
{
"task_title": "implement-login-endpoint",
"goal": "Implement POST /auth/login endpoint",
"acceptance": "Returns access + refresh token on valid credentials; 401 on invalid",
"status": "modify",
"additionalInstructions": "Also return token expiry timestamp",
"tasks": []
}
]
}bash
git clone <repo-url> cd interlock_mcp npm install npm run build
bash
claude mcp add interlock_dev -- node /absolute/path/to/interlock_mcp/build/index.js
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
An MCP (Model Context Protocol) server that applies the **Divide and Conquer paradigm** to AI-driven task management DnC MCP — Divide and Conquer MCP Server An MCP (Model Context Protocol) server that applies the **Divide and Conquer paradigm** to AI-driven task management. Just like a D&C algorithm, you declare a complex goal, break it into smaller sub-tasks, review and adjust the plan, and then let the agent execute automatically. --- The Workflow The DnC workflow is built around a structured loop: **Declare → Divide → Review → A
An MCP (Model Context Protocol) server that applies the Divide and Conquer paradigm to AI-driven task management. Just like a D&C algorithm, you declare a complex goal, break it into smaller sub-tasks, review and adjust the plan, and then let the agent execute automatically.
The DnC workflow is built around a structured loop: Declare → Divide → Review → Adjust → Conquer.
┌─────────────────────────────────────────────────────────┐
│ DnC Workflow │
│ │
│ 1. User: "Plan this goal" │
│ ↓ │
│ 2. Agent: /init-root-task │
│ - Analyzes codebase │
│ - Calls dnc_init_task + dnc_append_divided_task │
│ - Builds task tree (L1/L2/L3 depth) │
│ ↓ │
│ 3. User: Review task plan (via Web UI) │
│ - Mark tasks as accept / modify / split / delete │
│ - Add custom instructions per task │
│ ↓ │
│ 4. Agent: /adjust-tasks │
│ - Reads review results │
│ - Applies modify / split / delete changes │
│ ↓ │
│ ◀── [Review ↔ Adjust loop repeats until plan is solid] ─┤
│ ↓ │
│ 5. User: "Conquer the tasks" │
│ ↓ │
│ 6. Agent: /conquer-tasks │
│ - Validates all tasks are past init status │
│ - Executes leaf tasks sequentially │
│ - Updates status in real-time │
│ ↓ │
│ 7. Done ✓ │
└─────────────────────────────────────────────────────────┘
The Review ↔ Adjust loop is the key quality gate. The agent will not proceed to execution until all tasks have been reviewed and confirmed.
When Claude connects to the DnC MCP server, a Web UI automatically starts and opens in your browser at http://localhost:3331 (port auto-assigned).
The Web UI provides a Jira-style task management dashboard:
/adjust-tasksThe Web UI is the primary interface for the Review phase of the workflow.
Skills are what bridge natural language commands ("plan this project", "conquer the tasks") to the underlying MCP tool calls. Without skills installed, the workflow requires manual tool invocation. The three skills below automate the entire DnC lifecycle.
/init-root-taskTrigger phrases: "plan this goal", "break down tasks", "create a roadmap for my goal"
Analyzes the current codebase and transforms a vague goal into a structured, executable task tree.
Execution steps:
dnc_init_task to register the root taskdnc_append_divided_task recursively to build the full task hierarchy/adjust-tasksTrigger phrases: "adjust tasks based on the review results", "update the plan", "modify tasks as discussed"
Reads the current review results from the Web UI and applies all changes to the task plan.
Execution steps:
dnc_list_root_tasks if ambiguous)dnc_get_task_relations)init status (must be reviewed first)modify → updates goal/acceptance via dnc_update_tasksplit → decomposes into sub-tasks via dnc_append_divided_taskdelete → removes from the tree via dnc_delete_task/conquer-tasksTrigger phrases: "conquer the tasks", "execute the plan", "start working on the tasks"
Autonomously executes the finalized task plan from the first leaf task to the last.
Execution steps:
dnc_get_task_relations)done → notifies user, exitsinit tasks remaining → requests further review, haltsmodify/split/delete tasks → directs user to run /adjust-tasks firstin-progress → done as each task completes; parent tasks updated accordinglySkills must be copied into the .claude/skills/ directory of the project where you want to use them:
# From the interlock_mcp directory
cp -r .claude/skills/init-root-task /your-project/.claude/skills/
cp -r .claude/skills/adjust-tasks /your-project/.claude/skills/
cp -r .claude/skills/conquer-tasks /your-project/.claude/skills/
After copying, the skills are available in Claude Code via /init-root-task, /adjust-tasks, and /conquer-tasks.
| Tool | Description |
|------|-------------|
| dnc_init_task | Create a root task — the entry point for a new goal |
| dnc_append_divided_task | Add a child task under a parent node in the task tree |
| dnc_update_task | Update a task's goal, status, or acceptance criteria |
| dnc_delete_task | Delete a task (root = entire tree, child = node only) |
| dnc_get_task_relations | Retrieve the full task tree structure for a root task |
| dnc_list_root_tasks | List all root tasks currently registered |
| get_kst_time | Get the current time in KST (UTC+9) |
┌─────────────────────┐
│ init │ ← Task just created, awaiting review
└──────────┬──────────┘
│ (user review)
┌──────────▼──────────┐
┌───▶│ accept │ ← Approved, ready to execute
│ └──────────┬──────────┘
│ │
│ ┌──────────▼──────────┐
│ │ in-progress │ ← Agent is currently working on it
│ └──────────┬──────────┘
│ │
│ ┌──────────▼──────────┐
│ │ done │ ← Completed
│ └─────────────────────┘
│
│ ┌─────────────────────┐
│ │ hold │ ← Paused, pending dependency or decision
└────┤ modify │ ← Needs goal/acceptance update → re-review
│ split │ ← Needs further decomposition → re-review
│ delete │ ← Marked for removal
└─────────────────────┘
Each task is stored as a JSON file in the .dnc/ directory of your project:
{
"task_title": "implement-user-auth",
"goal": "Implement JWT-based user authentication for the API",
"acceptance": "All auth endpoints pass tests; tokens expire in 24h; refresh flow works",
"status": "accept",
"additionalInstructions": "Use RS256 algorithm, not HS256",
"tasks": [
{
"task_title": "create-auth-middleware",
"goal": "Create Express middleware to validate JWT tokens",
"acceptance": "Middleware rejects invalid tokens with 401; attaches user to req.user",
"status": "accept",
"tasks": []
},
{
"task_title": "implement-login-endpoint",
"goal": "Implement POST /auth/login endpoint",
"acceptance": "Returns access + refresh token on valid credentials; 401 on invalid",
"status": "modify",
"additionalInstructions": "Also return token expiry timestamp",
"tasks": []
}
]
}
git clone <repo-url>
cd interlock_mcp
npm install
npm run build
claude mcp add interlock_dev -- node /absolute/path/to/interlock_mcp/build/index.js
Verify the server is registered:
claude mcp list
cp -r /path/to/interlock_mcp/.claude/skills/* /your-project/.claude/skills/
Open Claude Code in your project directory and run:
/init-root-task
The Web UI will open automatically at http://localhost:3331.
npm run build # Compile TypeScript + copy views
npm run watch # Watch mode
npm run typecheck # TypeScript type check
npm run lint # ESLint
npm run lint:fix # ESLint with auto-fix
npm run format # Prettier format
npm run format:check
npm run test # Full test suite (Vitest + Playwright)
npm run test:unit # Unit tests only
npm run test:integration # Integration tests only
npm run test:e2e # End-to-end tests
npm run test:coverage # Coverage report (target: 80%+)
npm run test:watch # Watch mode
npm run inspector
MIT
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T00:09:09.177Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "model-context-protocol",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "typescript",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:mcp|supported|profile capability:model-context-protocol|supported|profile capability:typescript|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Kanghohyeong",
"href": "https://github.com/kanghohyeong/dnc-mcp",
"sourceUrl": "https://github.com/kanghohyeong/dnc-mcp",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:22:02.623Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T03:22:02.623Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-kanghohyeong-dnc-mcp/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to @kanghohyeong/dnc-mcp and adjacent AI workflows.