# io.github.qingkuai-js/qingkuai-mcp-server (npm · qingkuai-mcp-server)

MCP server for Qingkuai (.qk) — docs search, syntax check, compilation, and formatting tools.

- Trust score: 70/100 (medium)
- Change this week: −12
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `qingkuai-mcp-server`: 70/100 (this document), [markdown](https://verifymcp.io/servers/qingkuai-js-qingkuai-mcp-server/qingkuai-mcp-server.md), [page](https://verifymcp.io/servers/qingkuai-js-qingkuai-mcp-server/qingkuai-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `qingkuai-mcp-server`
- Version: `1.0.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 100/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 1 of 13 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 27 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 82/100
  - 92% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1057 tokens (~40/item across 26 items; 4 tools + 22 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add qingkuai-js-qingkuai-mcp-server -- npx -y qingkuai-mcp-server
```

### Codex

```bash
codex mcp add qingkuai-js-qingkuai-mcp-server -- npx -y qingkuai-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "qingkuai-js-qingkuai-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "qingkuai-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add qingkuai-js-qingkuai-mcp-server --command npx --arg -y --arg qingkuai-mcp-server
```

### Hermes

```yaml
mcp_servers:
  qingkuai-js-qingkuai-mcp-server:
    command: "npx"
    args: ["-y", "qingkuai-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "qingkuai-js-qingkuai-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "qingkuai-mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 70, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-07-31 (score 55, −9)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 64, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 82, +36)

- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] Schema quality: unverified → 92
- [functional] First check of Schema quality: pass
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: excellent

### 2026-07-26 (score 46)

First indexed and scored.

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

## MCP tools (4)

### `format_qingkuai_code` (~135 tokens)

Format Qingkuai Code

Format a Qingkuai (.qk) file using Prettier with the Qingkuai plugin. Applies consistent code style and formatting:
\- Indentation and spacing normalization
\- Line breaking and wrapping
\- Consistent quote styles (template literals, single quotes, etc.)
\- Component attribute formatting
Input is a file path. The tool reads file contents, loads Prettier config with that path, formats, and writes back to the same file.
Returns write result and any formatting errors.

Input parameters:

- `filePath` (string, required): Absolute or workspace-relative path to the .qk file to format and write back

### `check_qingkuai_syntax` (~118 tokens)

Check Qingkuai Syntax

Check Qingkuai (.qk) source code syntax without full compilation. Performs early stage compilation (template parsing, script analysis) to validate:
\- Template structure and tag nesting
\- Script syntax errors
\- Directive usage and attributes
Returns syntax errors, warnings, and type information without code generation.

Input parameters:

- `shorthandDerivedDeclaration` (boolean): Enable shorthand derived declaration syntax (e.g., $var instead of derived()). Default: false
- `source` (string, required): Qingkuai (.qk) source code to check

### `compile_qingkuai` (~228 tokens)

Compile Qingkuai Code

Compile Qingkuai (.qk) source code to JavaScript. Performs full compilation pipeline:
\- Syntax validation (parsing, analysis)
\- Template compilation to render functions
\- Reactivity detection and optimization
\- Source map generation
Returns compiled JavaScript code, error messages, and source mappings.

Input parameters:

- `debug` (boolean): Enable debug mode. Default: false
- `hashId` (string): Hash ID for the component. Default: auto-generated
- `interpretiveComments` (boolean): Preserve interpretive comments. Default: false
- `preserveHtmlComments` (boolean): Preserve HTML comments in template. Default: false
- `reactivityMode` (string): Default reactivity mode for variables. Default: 'reactive'
- `shorthandDerivedDeclaration` (boolean): Enable shorthand derived declaration syntax. Default: false
- `source` (string, required): Qingkuai (.qk) source code to compile
- `sourcemap` (boolean): Generate source map. Default: false
- `whitespace` (string): Whitespace handling in templates. Default: 'trim'

### `search_qingkuai_docs` (~104 tokens)

Search Qingkuai Syntax Docs

Search official Qingkuai syntax/reference docs for .qk files.
This is the primary source for syntax and API questions.
Always call this tool before falling back to website search.
Use this for questions mentioning qingkuai, qk, directives, grammar, attributes, compiler rules, or examples.

Input parameters:

- `limit` (integer): Maximum number of results. Default is 4.
- `query` (string, required): Keywords to search in Qingkuai docs.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/qingkuai-js-qingkuai-mcp-server/qingkuai-mcp-server#diagnostics

## Score history

- 2026-08-03: 70
- 2026-08-02: 70
- 2026-08-01: 55
- 2026-07-31: 55
- 2026-07-30: 64
- 2026-07-28: 82
- 2026-07-27: 82
- 2026-07-26: 46

## Links

- npm package: https://www.npmjs.com/package/qingkuai-mcp-server
- Socket report: https://socket.dev/npm/package/qingkuai-mcp-server
- Repository: https://github.com/qingkuai-js/language-features
- Changelog RSS feed: https://verifymcp.io/servers/qingkuai-js-qingkuai-mcp-server/qingkuai-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/qingkuai-js-qingkuai-mcp-server/qingkuai-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/qingkuai-js-qingkuai-mcp-server/qingkuai-mcp-server
