MCP ExplorerExplorer

Shadow Cljs Mcp

@Bigsyon 10 months ago
1 MIT
FreeCommunity
AI Systems
A Model Context Protocol server for monitoring shadow-cljs builds

Overview

What is Shadow Cljs Mcp

shadow-cljs-mcp is a Model Context Protocol (MCP) server designed to monitor shadow-cljs builds, providing real-time updates on build status, including progress, failures, and completions.

Use cases

Use cases for shadow-cljs-mcp include tracking build progress in ClojureScript applications, debugging compilation errors, and integrating build status checks into automated workflows for developers.

How to use

To use shadow-cljs-mcp, add the server configuration to your settings file, specifying the command and arguments. After editing ClojureScript files, utilize the ‘get_last_build_status’ tool to verify the build’s success.

Key features

Key features include real-time monitoring of build status, detailed error reporting, and integration with LLMs for automated build status checks after file edits.

Where to use

shadow-cljs-mcp is primarily used in development environments where ClojureScript is utilized, particularly in projects that require continuous integration and real-time feedback on build processes.

Content

shadow-cljs-mcp

npm version

A Model Context Protocol (MCP) server that monitors shadow-cljs builds and provides real-time build status updates.

Installation

Add the following to your Cline/Cursor/Claude whatever settings:

{
  "mcpServers": {
    "shadow-cljs-mcp": {
      "command": "npx",
      "args": [
        "shadow-cljs-mcp"
      ],
      "disabled": false,
      "autoApprove": [],
      "timeout": 60
    }
  }
}

With optional server location

{
  "mcpServers": {
    "shadow-cljs-mcp": {
      "command": "npx",
      "args": [
        "shadow-cljs-mcp",
        "--host",
        "localhost",
        "--port",
        "9630"
      ],
      "disabled": false,
      "autoApprove": [],
      "timeout": 60
    }
  }
}

The --host and --port arguments are optional. If not provided, the server will default to connecting to localhost:9630.

Overview

This MCP server connects to a running shadow-cljs instance and tracks build progress, failures, and completions. It provides an MCP tool that LLMs can use to verify build status after making changes to ClojureScript files.

LLM Integration

Adding to Your LLM Notes

Add the following to your LLM’s notes file (e.g., CLAUDE.md, cursorrules.md):

After any edits to ClojureScript files, use the shadow-cljs-mcp server's get_last_build_status tool to verify the build succeeded:

<use_mcp_tool>
<server_name>shadow-cljs-mcp</server_name>
<tool_name>get_last_build_status</tool_name>
<arguments>
{}
</arguments>
</use_mcp_tool>

This will show:
- Build status (completed/failed)
- Which files were compiled
- Any errors or warnings
- Build duration and metrics

Example Tool Response

Successful build:

{
  "status": "completed",
  "resources": 317,
  "compiled": 1,
  "warnings": 0,
  "duration": 0.609,
  "compiledFiles": [
    "path/to/your/file.cljs (505ms)"
  ]
}

Failed build:

Usage Notes

  • LLMs should call get_last_build_status after each ClojureScript file edit
  • Compilation errors will be shown in detail for easy debugging
  • Successful builds show which files were compiled and how long they took
  • Make sure shadow-cljs is running before starting this server

Requirements

  • Running shadow-cljs instance (defaults to localhost:9630 if not configured otherwise)

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers