MCP.so
ログイン

Quack MCP Server

@adiboy6

Quack MCP Server について

概要はまだありません

基本情報

カテゴリ

その他

ランタイム

python

トランスポート

stdio

公開者

adiboy6

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "quack-mcp-server-adiboy6": {
      "command": "python3",
      "args": [
        "quack.py"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Quack MCP Server?

Quack MCP Server is a continuous integration server built as an MCP server that automates code analysis and testing for Python code. It provides tools for linting (via pylint) and static type analysis (via mypy), with asynchronous job processing and job management.

How to use Quack MCP Server?

Install dependencies (pip install -r requirements.txt), then start the server with python3 quack.py for stdio transport or python3 quack.py --sse --host=0.0.0.0 --port=8000 for SSE transport. It can also run in a Docker container. Submit code using MCP tools like submit_code or submit_code_for_linting and retrieve results with get_job_results. Integration with Cline is configured via Cline’s MCP settings file.

Key features of Quack MCP Server

  • Linting using pylint for style and quality issues.
  • Static type analysis using mypy.
  • Asynchronous processing for concurrent code analysis.
  • Job management with submission, status tracking, and result retrieval.
  • Supports both stdio and SSE (HTTP) transports.
  • Extensible architecture for adding new processors.

Use cases of Quack MCP Server

  • Automatically check Python code style and quality in a CI pipeline.
  • Perform static type checking on code submissions before merging.
  • Integrate code analysis into an AI assistant (e.g., Cline) for immediate feedback.
  • Run ad‑hoc linting or type checks on code snippets via MCP tools.
  • Extend with custom processors (e.g., test coverage) for additional analysis.

FAQ from Quack MCP Server

What dependencies does Quack MCP Server require?

It requires mcp[cli], pylint, mypy, pytest, and pytest-asyncio, installed via pip install -r requirements.txt.

How do I run Quack MCP Server with Docker?

Build the image with docker build -t quack-mcp-server . and run with docker run -p 8000:8000 quack-mcp-server. The container automatically uses SSE transport on port 8000.

How do I integrate Quack MCP Server with Cline?

Configure the server in Cline’s MCP settings file (~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json) — either as a stdio command or an SSE URL, depending on the transport mode.

Can I add my own analysis processors?

Yes, create a new processor class in quack/processors/, implement the process method, register it in the server, and add tests in tests/processors/.

How do I run the test suite?

Run python -m pytest tests/ --asyncio-mode=auto. You can also run specific test files or stop on first failure with -x.

コメント

「その他」の他のコンテンツ