Crawler Summary

@kanghohyeong/dnc-mcp answer-first brief

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

Claim this agent
Agent DossierGitHubSafety: 89/100

@kanghohyeong/dnc-mcp

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

MCPself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Feb 25, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.

Trust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Feb 25, 2026

Vendor

Kanghohyeong

Artifacts

0

Benchmarks

0

Last release

0.1.0

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

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.git
  1. 1

    Setup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Kanghohyeong

profilemedium
Observed Feb 25, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

MCP

contractmedium
Observed Feb 25, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB MCP

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Executable Examples

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

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB MCP

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

Full README

DnC MCP — Divide and Conquer MCP Server

Node.js TypeScript License MCP

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 → 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.


Web UI

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:

  • Task card dashboard — Overview of all root tasks and their current status
  • Tree visualization — Hierarchical view of parent/child task relationships
  • Batch status update — Mark multiple tasks at once (accept, modify, split, delete, hold)
  • Color-coded status badges — At-a-glance status for every task
  • Custom instructions input — Add per-task instructions for the agent to follow during /adjust-tasks

The Web UI is the primary interface for the Review phase of the workflow.


Skills — The Critical Integration

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-task

Trigger 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:

  1. Contextual scan — Reads the codebase to understand architecture and dependencies
  2. Goal clarification — Refines the objective and asks for user confirmation before proceeding
  3. Root task creation — Calls dnc_init_task to register the root task
  4. Depth selection — Prompts for decomposition depth:
    • Level 1 (Direct): 1–2 depth, flat high-level milestones
    • Level 2 (Standard): 3–4 depth, balanced nested tree
    • Level 3 (Granular): 5–7 depth, micro-unit tasks for maximum precision
  5. Recursive decomposition — Calls dnc_append_divided_task recursively to build the full task hierarchy

/adjust-tasks

Trigger 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:

  1. Identifies the target root task (dnc_list_root_tasks if ambiguous)
  2. Reads the current task structure and review statuses (dnc_get_task_relations)
  3. Validates: halts if any tasks remain in init status (must be reviewed first)
  4. Collects technical context; custom instructions take the highest priority
  5. Applies changes based on status:
    • modify → updates goal/acceptance via dnc_update_task
    • split → decomposes into sub-tasks via dnc_append_divided_task
    • delete → removes from the tree via dnc_delete_task

/conquer-tasks

Trigger 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:

  1. Identifies the target root task
  2. Fetches the full task tree (dnc_get_task_relations)
  3. Feasibility check:
    • Already done → notifies user, exits
    • Any init tasks remaining → requests further review, halts
    • Any modify/split/delete tasks → directs user to run /adjust-tasks first
  4. Executes leaf tasks sequentially; each task goes through an internal planning phase before action
  5. Updates status in real-time: in-progressdone as each task completes; parent tasks updated accordingly

Installing Skills

Skills 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.


MCP Tools Reference

| 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) |


Task Status Lifecycle

         ┌─────────────────────┐
         │        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
         └─────────────────────┘

Task Data Structure

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": []
    }
  ]
}

Installation & Setup

Prerequisites

1. Clone and build

git clone <repo-url>
cd interlock_mcp

npm install
npm run build

2. Register the MCP server with Claude Code

claude mcp add interlock_dev -- node /absolute/path/to/interlock_mcp/build/index.js

Verify the server is registered:

claude mcp list

3. Install skills into your project

cp -r /path/to/interlock_mcp/.claude/skills/* /your-project/.claude/skills/

4. Start using the workflow

Open Claude Code in your project directory and run:

/init-root-task

The Web UI will open automatically at http://localhost:3331.


Development

Build

npm run build       # Compile TypeScript + copy views
npm run watch       # Watch mode

Code quality

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

Testing

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

Inspect MCP tools interactively

npm run inspector

License

MIT

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB MCP

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

MCP: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
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"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITLAB_AI_CATALOGgitlab-mcp

Rank

83

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_PUBLIC_PROJECTSgitlab-mcp

Rank

80

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-openapi

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

MCP
GITLAB_AI_CATALOGrmcp-actix-web

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

MCP
Machine Appendix

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.