🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

qingkuai-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qingkuai-mcp-server

MCP server for Qingkuai (.qk) — provides syntax docs search, syntax checking, compilation, and code formatting tools for AI agents.

latest
Source
npmnpm
Version
1.0.6
Version published
Weekly downloads
38
-19.15%
Maintainers
1
Weekly downloads
 
Created
Source

qingkuai-mcp-server

MCP server for Qingkuai — provides AI agents with syntax documentation search, syntax checking, compilation, and code formatting tools for .qk files.

Tools

ToolDescription
search_qingkuai_docsSearch official Qingkuai syntax/reference docs. Always call this before falling back to website search.
check_qingkuai_syntaxValidate .qk source code syntax (template structure, script errors, directive usage) without full compilation.
compile_qingkuaiCompile .qk source to JavaScript with source maps.
format_qingkuai_codeFormat a .qk file using Prettier with the Qingkuai plugin and write back to disk.

Prompts

PromptTrigger scenario
qingkuai-code-generation-rulesGenerating or editing .qk files — enforces reference attribute priority, reactive declaration minimization, and naming conventions.
qingkuai-install-init-create-qingkuai-firstInstalling, initializing, or scaffolding a Qingkuai project — enforces create-qingkuai usage.

Usage

Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "qingkuai": {
      "command": "npx",
      "args": ["qingkuai-mcp-server"]
    }
  }
}

VS Code (Copilot Agent Mode)

Add to your .vscode/mcp.json:

{
  "servers": {
    "qingkuai": {
      "command": "npx",
      "args": ["qingkuai-mcp-server"],
      "type": "stdio"
    }
  }
}

Direct execution

npx qingkuai-mcp-server

Requirements

  • Node.js ≥ 18
  • A Qingkuai project (see Getting Started)

License

MIT

Keywords

mcp

FAQs

Package last updated on 06 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts