Install
$ agentstack add mcp-lumidew-dcode ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
DCode
DCode is a local-first desktop coding assistant for working with software projects through conversation. It combines project-aware chat, file and terminal tools, explicit approval controls, plan-driven execution, MCP integrations, and reusable skills in a native desktop workspace.
> [!IMPORTANT] > DCode is an independent open-source project. It is not affiliated with, endorsed by, or an official client of DeepSeek.
Capabilities
- Project-aware coding workflows - Open a local project, inspect its structure, search and read files, apply edits, and run commands without leaving the conversation.
- Plan and execute modes - Explore requirements and review a structured implementation plan before allowing the agent to make changes.
- Human-in-the-loop approvals - Control file writes, shell commands, external actions, and out-of-scope access with configurable permission policies.
- MCP and skills - Connect Model Context Protocol servers and add reusable, project-specific instructions through skills.
- Agent delegation - Delegate bounded exploration tasks to sub-agents while keeping the main conversation in control.
- Integrated development surfaces - Review tool activity and file changes, preview common file types, use the built-in terminal, and undo eligible edits from a conversation turn.
- Rich input and context - Attach files and images, use optional voice transcription and vision models, and compact long conversations when they approach the configured context limit.
- Local persistence - Store conversations, projects, tasks, and settings on the local machine. API keys are kept out of the renderer process and use platform secure storage when available.
Download
Prebuilt packages are published on the Releases page:
- macOS (Apple silicon):
DCode--arm64.dmg - Windows x64:
DCode--x64.exe
Builds are not code-signed yet. On first launch, macOS requires allowing the app under System Settings > Privacy & Security, and Windows SmartScreen requires choosing More info > Run anyway.
Requirements
- Node.js 22
- pnpm 10
- Git
Native dependencies are built for Electron during installation. On macOS, the current package target is Apple silicon. Windows packaging is also configured.
Quick Start
git clone https://github.com/sherlockGH-coder/DCode.git
cd DCode
corepack enable
pnpm install
pnpm dev
The development command starts the Electron main process, preload bridge, and React renderer with hot reload.
Model Configuration
Open Settings > Models in the application and configure an API profile with:
- an Anthropic Messages-compatible base URL;
- an API key;
- one or more model identifiers;
- a default model for new conversations.
Multiple API profiles can be stored and switched from the application. Optional services are configured separately:
- Web search: built into the model API (server-side
web_search); no external provider or key required - Speech transcription: OpenAI-compatible transcription endpoint
- Vision: Anthropic, OpenAI, or a custom vision endpoint
Secrets are stored locally and are never exposed through the renderer-facing settings API. Do not commit API keys, local settings, or generated data to the repository.
Development Commands
| Command | Purpose | | --- | --- | | pnpm dev | Start the application in development mode | | pnpm typecheck | Type-check the main, preload, and renderer code | | pnpm test | Run the Vitest test suite | | pnpm native:smoke | Verify Electron-native database, terminal, and document dependencies | | pnpm build | Create production bundles | | pnpm package:dmg | Build a macOS DMG | | pnpm package-win | Build the Windows package |
Before packaging a release, run at least:
pnpm native:smoke
pnpm typecheck
pnpm test
pnpm build
Architecture
DCode uses Electron, React, and TypeScript. The codebase is divided by process boundary:
src/
├── main/ Electron lifecycle, agent runtime, tools, persistence, and IPC
├── preload/ Narrow, typed bridges exposed to the renderer
├── renderer/ React application and desktop user interface
└── shared/ Cross-process types and contracts
The main process owns filesystem access, command execution, model requests, MCP clients, and the SQLite conversation database. The renderer communicates with those capabilities through the preload bridge rather than importing Node.js APIs directly.
Permissions and Local Access
Coding agents can read files, modify project contents, and execute commands. Review requested actions carefully, especially when working with unfamiliar repositories or MCP servers.
The application provides three permission policies:
- Default: read-only tools can run automatically; writes, commands, and external state changes require approval.
- Auto review: file operations can run automatically; commands and external state changes still require approval.
- Full access: approval prompts are skipped. Use this mode only in trusted projects and environments.
Project path checks and approval prompts reduce accidental access, but they are not a replacement for operating-system isolation. Use a sandbox or disposable environment for untrusted code.
License
DCode is available under the [MIT License](LICENSE).
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Lumidew
- Source: Lumidew/DCode
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.