Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.qingkuai-js/qingkuai-mcp-server

NPM · QINGKUAI-MCP-SERVER · SCANNED AUG 3

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

Available components

−12 this week 70 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security100
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 1 of 13 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability82
  • 92% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Partial
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 1057 tokens (~40/item across 26 items; 4 tools + 22 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

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

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · qingkuai-mcp-server

# add to Claude Code
claude mcp add qingkuai-js-qingkuai-mcp-server -- npx -y qingkuai-mcp-server
# add to Codex CLI
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
    }
  }
}
# add to OpenClaw
openclaw mcp add qingkuai-js-qingkuai-mcp-server --command npx --arg -y --arg qingkuai-mcp-server
# ~/.hermes/config.yaml
mcp_servers:
  qingkuai-js-qingkuai-mcp-server:
    command: "npx"
    args: ["-y", "qingkuai-mcp-server"]
// mcp.json
{
  "mcpServers": {
    "qingkuai-js-qingkuai-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "qingkuai-mcp-server"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +15
    • Malware scan: unverified → pass security
  • 31 Jul 26 −9
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 +36
    • Tool coverage: unverified → 100 functional
    • 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 functional
  • 26 Jul 26 46

    First indexed and scored.

    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 13 packages

13 packages in the resolved dependency tree · 1 stale.

MCP tools — 4 exposed · ~585 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
check_qingkuai_syntax ~118

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.

NameTypeReqDescription
shorthandDerivedDeclarationbooleanEnable shorthand derived declaration syntax (e.g., $var instead of derived()). Default: false
sourcestringyesQingkuai (.qk) source code to check

No output schema declared.

No examples provided.

compile_qingkuai ~228

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.

NameTypeReqDescription
debugbooleanEnable debug mode. Default: false
hashIdstringHash ID for the component. Default: auto-generated
interpretiveCommentsbooleanPreserve interpretive comments. Default: false
preserveHtmlCommentsbooleanPreserve HTML comments in template. Default: false
reactivityModestringDefault reactivity mode for variables. Default: 'reactive'
shorthandDerivedDeclarationbooleanEnable shorthand derived declaration syntax. Default: false
sourcestringyesQingkuai (.qk) source code to compile
sourcemapbooleanGenerate source map. Default: false
whitespacestringWhitespace handling in templates. Default: 'trim'

No output schema declared.

No examples provided.

format_qingkuai_code ~135

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.

NameTypeReqDescription
filePathstringyesAbsolute or workspace-relative path to the .qk file to format and write back

No output schema declared.

No examples provided.

search_qingkuai_docs ~104

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.

NameTypeReqDescription
limitintegerMaximum number of results. Default is 4.
querystringyesKeywords to search in Qingkuai docs.

No output schema declared.

No examples provided.