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
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
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 27 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
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.
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
claude mcp add qingkuai-js-qingkuai-mcp-server -- npx -y qingkuai-mcp-server
codex mcp add qingkuai-js-qingkuai-mcp-server -- npx -y qingkuai-mcp-server
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"qingkuai-js-qingkuai-mcp-server": {
"type": "local",
"command": [
"npx",
"-y",
"qingkuai-mcp-server"
],
"enabled": true
}
}
} openclaw mcp add qingkuai-js-qingkuai-mcp-server --command npx --arg -y --arg qingkuai-mcp-server
mcp_servers:
qingkuai-js-qingkuai-mcp-server:
command: "npx"
args: ["-y", "qingkuai-mcp-server"] {
"mcpServers": {
"qingkuai-js-qingkuai-mcp-server": {
"command": "npx",
"args": [
"-y",
"qingkuai-mcp-server"
]
}
}
} 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
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.
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.
check_qingkuai_syntax 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.
| Name | Type | Req | Description |
|---|---|---|---|
| shorthandDerivedDeclaration | boolean | — | Enable shorthand derived declaration syntax (e.g., $var instead of derived()). Default: false |
| source | string | yes | Qingkuai (.qk) source code to check |
No output schema declared.
No examples provided.
compile_qingkuai Compile Qingkuai Code ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| 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 | yes | Qingkuai (.qk) source code to compile |
| sourcemap | boolean | — | Generate source map. Default: false |
| whitespace | string | — | Whitespace handling in templates. Default: 'trim' |
No output schema declared.
No examples provided.
format_qingkuai_code 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.
| Name | Type | Req | Description |
|---|---|---|---|
| filePath | string | yes | Absolute or workspace-relative path to the .qk file to format and write back |
No output schema declared.
No examples provided.
search_qingkuai_docs Search Qingkuai Syntax 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.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | — | Maximum number of results. Default is 4. |
| query | string | yes | Keywords to search in Qingkuai docs. |
No output schema declared.
No examples provided.