
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
secret-design-mcp
Advanced tools
Local MCP server and web viewer for isolated per-result GDWEB design specifications
English | 한국어

Secret MCP is a local Model Context Protocol (MCP) server that searches GDWEB for recent design references and creates a separate LLM request and a separate DESIGN_INDEX file for every search result. Each file contains page- and route-specific layouts, navigation, pixel coordinates, colors, components, and responsive specifications that can be verified from the available evidence.
The name Secret MCP does not mean that the project provides secret features or private data. It was the project name used while experimenting in a private repository with the idea of building an MCP server around design websites. The project's current purpose is to extract reproducible structural evidence from public design references and turn it into one specification per work that an LLM can apply to a new project.
Images and descriptions from multiple works are never combined in a single LLM context or document. The server processes search results sequentially inside the server, creates an independent MCP sampling/createMessage request for each work, saves that work's file, and only then advances to the next work. A separate local web application lets you select one work at a time, inspect its source evidence, measured colors and coordinates, LLM contract, generation log, and final document, and manage the exclusion list for subsequent searches.
Node.js 20.19 or later is required.
The published MCP server can be launched with:
npx -y secret-design-mcp
Clone the repository when you also need the local viewer or want to work on the source:
git clone https://github.com/yyeongjin/secret_mcp.git
cd secret_mcp
npm install
npm run build
Set DESIGN_INDEX_OUTPUT_DIR to the same value for the MCP server and the web application so that both processes read the same output directory.
DESIGN_INDEX_OUTPUT_DIR=/absolute/path/to/design-index npm run web
Open the following address in a browser.
http://127.0.0.1:4317
The web application displays the generation-run list, per-work progress, GDWEB evidence images, measured coordinates and palettes, the specification contract sent to the LLM, the final Markdown, and generation timestamps. Documents and evidence are read-only; only Exclude from search and Remove exclusion change the filter used by subsequent searches.
{
"mcpServers": {
"secret-mcp": {
"command": "npx",
"args": [
"-y",
"secret-design-mcp"
],
"env": {
"DESIGN_INDEX_OUTPUT_DIR": "/absolute/path/to/design-index",
"SECRET_MCP_WEB_ORIGIN": "http://127.0.0.1:4317"
}
}
}
}
For a source checkout, replace command and args with "command": "node" and "args": ["/absolute/path/to/secret_mcp/dist/index.js"].
The MCP client must support sampling/createMessage. When a client does not support sampling, the server returns an explicit error instead of running a fallback that places multiple works in the same context.
The MCP stdio server itself does not open an HTTP port. The client launches node dist/index.js as a child process and exchanges JSON-RPC messages over stdio. Only the separate web viewer process uses port 4317 by default.
The server does not need to be modified when the outer MCP host cannot answer sampling/createMessage. A separate MCP protocol client can connect directly to dist/index.js, advertise sampling: {}, and handle every sampling request by launching a fresh Codex LLM process in a fresh temporary workspace.
const client = new Client(
{ name: 'secret-mcp-sampling-client', version: '1.0.0' },
{ capabilities: { sampling: {} } }
);
client.setRequestHandler(CreateMessageRequestSchema, async request => {
const workspace = await mkdtemp('secret-mcp-sampling-');
const response = await launchFreshCodex({
workspace,
messages: request.params.messages,
systemPrompt: request.params.systemPrompt,
});
return {
model: response.model,
role: 'assistant',
content: { type: 'text', text: response.markdown },
};
});
The sampling handler must copy only the current request's text blocks and evidence images into that workspace. It must not reuse a Codex conversation, process, working directory, response file, or message history from another work. The workspace launches one new Codex process, waits for its complete Markdown response, returns that response to the pending MCP sampling call, and can then be removed after the server has saved the work's contract, evidence, and document.
The server still controls the sequential queue: work 2 is not prepared until work 1 has returned and been saved. This makes the fresh process and workspace an execution-level equivalent of the protocol-level includeContext: none boundary without adding a combined fallback to the server. The direct client becomes the sampling-capable MCP host; it should use a tool-call timeout long enough for the per-work output budget and must never answer multiple sampling requests through one persistent LLM conversation.
A separate /web-design slash command is not required.
Find three recent design references on GDWEB that are suitable for a Godot project website.
Analyze every search result through a completely independent LLM request,
and create one reproducible DESIGN_INDEX document for each result.
Inside each document, separate every visible page into its own page specification,
and specify everything from navigation and section coordinates to exact color formats and responsive values.
The host LLM calls the generate-gdweb-design-indexes tool once. The MCP server performs the search and separates the per-work LLM requests internally.
The manual tool-call format is shown below.
{
"name": "generate-gdweb-design-indexes",
"arguments": {
"query": "game portfolio",
"limit": 3,
"awardOnly": true,
"includePreviousYear": true,
"language": "English",
"outputDirectory": "/absolute/path/to/design-index",
"maxTokens": 131072
}
}
If outputDirectory is omitted, the tool uses the DESIGN_INDEX_OUTPUT_DIR environment variable. If that variable is also absent, it uses the design-index directory under the server's working directory.
maxTokens is a per-work output budget, not a budget shared by the run and not a budget divided equally between pages. A single work may contain multiple visible pages or routes, and every page must repeat the complete page-specific parts of the 19-section contract. The default and minimum are therefore 131072 tokens. Clients may request up to 262144 tokens for exceptionally large multi-page evidence sets.
With limit: 3, the default run can request up to three independent 131072-token outputs; the works do not share one 131072-token pool. The connected sampling client and selected model must support the requested output size. If the model returns stopReason: maxTokens, the server treats that work as failed instead of saving a truncated DESIGN_INDEX as complete.
When the tool completes, it returns the run ID, run-manifest path, per-work document paths, and web-viewer URL.
For the actual example, Secret MCP found three aviation award winners registered on GDWEB in 2026 and 2025, created a DESIGN_INDEX for each work through an independent LLM request, and then applied the structure of the Korean Air reference to a Godot aviation project website.
The finished AEROFLOW website is not a clone of the Korean Air website. It uses the information hierarchy, navigation, action panel, section arrangement, and responsive principles from the specification while introducing a new brand, copy, aviation imagery, and content. This example demonstrates that even when the resulting design differs from the reference, measurable structural evidence can still produce a polished website with a distinctive identity.
# 1. Build
npm install
npm run build
# 2. Per-work document web viewer
DESIGN_INDEX_OUTPUT_DIR="$PWD/tmp/design-index/aviation-godot-20260730" npm run web
# 3. Specification-driven result website
python3 -m http.server 4320 \
--bind 127.0.0.1 \
--directory tmp/showcase/aviation-godot/generated-site
After starting the processes, open the following screens.
Select works one at a time from the run list on the left. The right side displays only the final DESIGN_INDEX for the selected work, without mixing in content from other works.

The Evidence tab shows the desktop and mobile images sent to the independent LLM request, tile coordinates, reduction ratios, and representative colors.

The Request Contract records page separation, navigation, section bounds, HEX/RGB/HSL colors, components, the responsive matrix, and acceptance criteria. This contract prevents the result from ending as a superficial mood summary and makes it an implementation specification another LLM can use.

The Generation Log shows the sequence from search and evidence preparation through the independent per-work LLM request, document save, and full-run completion. This run processed all three works with separate includeContext: none requests.

The bright aviation portal and action-panel structure observed in the Korean Air reference were adapted to a Godot project. The brand, aircraft imagery, copy, and functionality were created specifically for this result.

The reservation and promotion card structure was repurposed for core project content: flight regions, a glass cockpit, and real-time weather.

The source reference's notices and service shortcuts were restructured into build history, development progress, flight models, avionics, media, controls, and roadmap navigation.

The final area contains project media, development, support, and license links, followed by an independent-project footer.

These links point directly to the actual files included in the repository. The same artifacts are also grouped under tmp/showcase/aviation-godot through relative symbolic links for local execution and browsing.
flowchart TD
User["User request"] --> Host["Host LLM"]
Host --> Tool["One generate-gdweb-design-indexes call"]
Tool --> Exclusions["Load the exclusion list managed in the web viewer"]
Exclusions --> Search["Search GDWEB internally and filter work IDs"]
Search --> Queue["Keep results inside the server"]
Queue --> R1["Work 1 images + specification contract"]
R1 --> S1["Independent sampling/createMessage request 1"]
S1 --> F1["Save DESIGN_INDEX_gdweb-1.md"]
F1 --> R2["Work 2 images + specification contract"]
R2 --> S2["Independent sampling/createMessage request 2"]
S2 --> F2["Save DESIGN_INDEX_gdweb-2.md"]
F2 --> More["Repeat sequentially for every work"]
More --> Manifest["Record per-work evidence and status in run.json"]
Manifest --> Web["Inspect one work at a time in the local web viewer"]
Manifest --> Status["Return only file paths and statuses to the host"]
The following boundaries are essential.
limit: 3, the server performs exactly up to three mutually independent LLM sampling requests.includeContext: none.In other words, this is not the earlier architecture in which the host LLM reads every result at once and produces a combined summary.
The web viewer reads DESIGN_INDEX_OUTPUT_DIR/.secret-mcp-runs every 2.5 seconds. There is no separate database or debugging connection between the MCP generation process and the web server.
The interface contains the following areas.
gdweb-<work-number>When a run contains three works, it also produces three documents as shown below.
.secret-mcp-runs/<run-id>/
├── run.json
├── contracts/
│ ├── gdweb-26905.md
│ ├── gdweb-26522.md
│ └── gdweb-xxxxx.md
├── evidence/
│ ├── gdweb-26905_desktop_01-of-05.jpg
│ ├── gdweb-26522_desktop_01-of-04.jpg
│ └── ...
└── documents/
├── DESIGN_INDEX_gdweb-26905.md
├── DESIGN_INDEX_gdweb-26522.md
└── DESIGN_INDEX_gdweb-xxxxx.md
run.json is not a file that combines document bodies from multiple works. It is a viewer manifest containing only per-work file paths, status, timestamps, model, and evidence lists.
Selecting Exclude from search in the web viewer saves the work number to the following file.
DESIGN_INDEX_OUTPUT_DIR/.secret-mcp/exclusions.json
generate-gdweb-design-indexes and search-gdweb-designs runs filter work numbers before selection.limit from the non-excluded works.Remove exclusion makes the work eligible again starting with the next search.DESIGN_INDEX_OUTPUT_DIR to share the same exclusion list.GDWEB's full desktop captures can be extremely tall and several megabytes in size. Sending the original base64 data directly in a sampling request can exceed MCP transport limits or cause a vision model to miss fine structural details.
Before creating the request for each work, gdweb-sampling-images.ts performs the following operations.
sgbn=1sgbn=3x/y/width/height coordinates, source-space coordinates, and source URL for every tileMultiple tiles from one work are included in the same work-specific sampling request. Tiles from different works are never included in the same request.
Representative colors are measurements sampled from normalized screenshot pixels. They are precise evidence for visual comparison, but they must not be presented as the source site's CSS variables because JPEG error and image content affect the values. The generation contract distinguishes MEASURED colors from INFERRED implementation tokens.
The server does not open the work's live production website or crawl its DOM. Visual evidence is limited to the images and metadata registered on GDWEB.
Design search does not use browser automation, Bing, Brave, or DuckDuckGo.
Query
-> POST https://www.gdweb.co.kr/sub/search.asp
-> form field: Txt_word=<query>
-> parse the GDWEB result HTML
-> collect work number, category, and registration year
-> retain only the current and previous year
-> load GDWEB detail metadata and registered images
year is omitted, the current runtime year is used.includePreviousYear defaults to true.includePreviousYear: false, only the target year is allowed.awardOnly defaults to true, so works without an award name are excluded.limit can be set from 1 through 10.| Field | Description |
|---|---|
strNo | GDWEB work number, also used in the document filename |
txtFgbn | GDWEB work-category value |
title | Work title |
gdwebUrl | GDWEB work detail page |
registeredDate / registeredYear | Registration date and the year used for filtering |
award | Award name |
concept | Design concept |
primaryColor | Primary color |
productionCompany | Production company |
desktopImageUrl | GDWEB desktop capture (sgbn=1) |
mobileImageUrl | GDWEB mobile capture (sgbn=3) |
Every independent sampling request includes the secret-mcp/design-index/v2 contract. The resulting filename is DESIGN_INDEX_gdweb-<strNo>.md.
There is one file per work, but each file begins with a page and route inventory and repeats a complete subsection for every verified page. The contract does not mistake sections in a long scrolling capture for separate pages; it splits pages only when the evidence collage visibly contains separate screens.
Every document must contain all 19 numbered sections below.
| Area | Required Specification |
|---|---|
| Reconstruction goal | Reference ID, target fidelity, routes, target viewports, and non-goals |
| Evidence and coordinate system | Image IDs, original/prepared dimensions, scale, tile coordinates, source-space coordinates, and overlap-removal method |
| Site map | Verified pages and routes, purpose, evidence images, shared shell, active menu, and confidence |
| Shared app shell | Global background, container, gutters, overlays, page chrome, and stacking context |
| Navigation | Desktop and mobile heights, logo/menu coordinates, gaps, touch areas, and active/hover/focus/open states |
| Per-page specification and coordinate table | Canvas model, section order, x/y/width/height, layout, states, data, and evidence level for every page |
| Layout deep dive | DOM, grid/flex, tracks, min/max, ratios, gaps, overflow, sticky, absolute, and z-index |
| Component abstraction | Page-linked component tree, props, variants, slots, state, events, and data contracts |
| Tokens and exact colors | HEX/RGB/HSL/alpha, usage, measurement coordinates, confidence, tolerance, and CSS variables |
| Typography | Font family by role, px/rem, weight, line height, letter spacing, alignment, truncation, and responsive values |
| Assets and icons | Page and section, display size, aspect ratio, crop, focal point, object-fit, loading, and fallback strategy |
| Responsive matrix | Containers, columns, order, visibility, navigation, and spacing at 1440/1280/1024/768/390/360px |
| Interaction and motion | Color, opacity, transform, duration, easing, keyboard, and reduced-motion behavior for every state |
| Accessibility | Per-page landmarks, headings, focus, menu semantics, labels, alt text, contrast, and touch targets |
| Data and content | Page entities, fields, counts, ordering, formats, localization, and loading/empty/error fixtures |
| Frontend architecture | Routes, directories, page/shared modules, tokens, assets, state, and server/client boundaries |
| Implementation task graph | Measurement, shell, navigation, per-page task IDs, dependencies, deliverables, and completion criteria |
| Per-page acceptance criteria | Coordinate, color, and typography tolerances; viewport comparison; overflow; assets; keyboard; and performance |
| Uncertainties and decisions | Per-page and per-section UNKNOWNs, adopted values, alternatives, confidence, and additional evidence required |
Every major judgment is marked with one of the following evidence levels.
OBSERVED: directly visible in a GDWEB image or metadataMEASURED: numerically verified from supplied pixel coordinates or the measured paletteINFERRED: reasonably inferred to reproduce the same resultUNKNOWN: cannot be verified from static evidence and must not be asserted as factAnother LLM must be able to derive the component tree, tokens, responsive rules, assets, implementation order, and validation items from the completed document alone.
The server currently exposes five MCP tools.
| Tool | Purpose |
|---|---|
generate-gdweb-design-indexes | Search GDWEB, make an isolated LLM request per result, and save documents |
search-gdweb-designs | Return a GDWEB reference list without generating specifications |
full-web-search | Search the general web and extract full page content |
get-web-search-summaries | Return titles, URLs, and descriptions from a general search |
get-single-web-page-content | Extract the full content of a known general webpage |
Use generate-gdweb-design-indexes for design planning, layout analysis, implementation specifications, and DESIGN_INDEX requests. Use search-gdweb-designs only for lightweight list requests.
flowchart TD
MCP["Secret MCP"] --> GDWEB["Design: direct GDWEB search + isolated sampling"]
MCP --> General["General information: SearchEngine"]
General --> Bing["Bing"]
General --> Brave["Brave"]
General --> DDG["DuckDuckGo"]
General --> Extractor["Extract page content when needed"]
Bing, Brave, DuckDuckGo, and Playwright are used only by the general-search path. They do not participate in GDWEB search or image collection.
secret_mcp/
├── src/
│ ├── index.ts MCP tool registration and sampling requests
│ ├── dashboard-server.ts Local web server and document/exclusion APIs
│ ├── design-index-run-store.ts Run manifest and per-work artifact records
│ ├── design-exclusion-store.ts Add/remove persistent search exclusions
│ ├── design-index-paths.ts Shared MCP/viewer output-path resolution
│ ├── gdweb-design-search.ts GDWEB search, year filtering, and registered-image loading
│ ├── gdweb-design-index-generator.ts Sequential per-work generation and Markdown saving
│ ├── gdweb-sampling-images.ts Long-capture resizing, tiling, and compression
│ ├── design-spec-contract.ts Required DESIGN_INDEX specification contract
│ ├── search-engine.ts General Bing, Brave, and DuckDuckGo search
│ ├── enhanced-content-extractor.ts General webpage content extraction
│ ├── browser-pool.ts Browser pool for general content extraction
│ ├── rate-limiter.ts General-search request limits
│ ├── types.ts Search and tool types
│ └── utils.ts URL, text, and timestamp utilities
├── web/
│ ├── index.html Web viewer interface
│ ├── styles.css Desktop and mobile layout
│ └── app.js Run refresh and per-work document switching
├── .github/workflows/
│ ├── ci.yml Build, lint, and package validation
│ ├── gdweb-smoke.yml Live GDWEB search and image validation
│ └── release.yml Release-package generation
├── tmp/DESIGN_CONTEST_SITES.md Design competition and award website list
├── tmp/reconstructions/
│ └── gdweb-27294-godot/ Specification-driven AEROFLOW static website
├── tmp/showcase/aviation-godot/
│ ├── DESIGN_INDEX.md Relative symbolic link to the per-work specification
│ ├── REQUEST_CONTRACT.md Relative symbolic link to the independent request contract
│ ├── RUN_MANIFEST.json Relative symbolic link to the run manifest
│ ├── generated-site/ Relative symbolic link to the result website
│ └── screenshots/ Run and result screens used by this README
├── mcp.json MCP registration example
└── package.json
npm run build
npm run lint
npm run smoke:gdweb-isolation
npm run web
The isolation smoke test connects a mock MCP client that supports sampling and verifies the following behavior.
includeContext: none.| Name | Default | Description |
|---|---|---|
DESIGN_INDEX_OUTPUT_DIR | ./design-index | Directory where generated documents are stored |
SECRET_MCP_WEB_ORIGIN | http://127.0.0.1:4317 | Web-viewer address included in MCP results |
SECRET_MCP_WEB_HOST | 127.0.0.1 | Web-server bind address |
SECRET_MCP_WEB_PORT | 4317 | Web-server port |
MCP_SAMPLING_TIMEOUT_MS | 1800000 | Timeout for each independent per-work LLM request in milliseconds |
MAX_CONTENT_LENGTH | 500000 | Maximum page-body length extracted from a general webpage |
DEFAULT_TIMEOUT | 6000 | Timeout for general HTTP and browser requests |
MAX_BROWSERS | 3 | Maximum number of browsers used for general extraction |
BROWSER_TYPES | chromium,firefox | Browsers used for general search and extraction |
BROWSER_HEADLESS | true | Whether Playwright runs headlessly |
FORCE_MULTI_ENGINE_SEARCH | false | Whether to compare every engine during general search |
DEBUG_BROWSER_LIFECYCLE | false | Whether to print browser lifecycle logs |
FAQs
Local MCP server and web viewer for isolated per-result GDWEB design specifications
The npm package secret-design-mcp receives a total of 23 weekly downloads. As such, secret-design-mcp popularity was classified as not popular.
We found that secret-design-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.