Skip to content

Latest commit

 

History

History
100 lines (85 loc) · 3.01 KB

File metadata and controls

100 lines (85 loc) · 3.01 KB

general tools

REPL based

IDE based

to set up claude-code mcp config for Clojure, add the following to ~/.claude.json

"mcpServers": {
        "clojure-mcp": {
          "command": "/bin/sh",
          "args": [
            "-c",
            "export PATH=/opt/homebrew/bin:$PATH; exec clojure -X:mcp :port 7888"
          ]
        },
        "code-mode": {
           "command": "npx",
            "args": [
               "@utcp/mcp-bridge"
            ],
            "env": {
               "UTCP_CONFIG_FILE": "~/.config/utcp/.utcp_config.json"
            }
         }
      }

another way claude mcp add mcp-mermaid --scope user /opt/homebrew/bin/mcp-mermaid

docs https://docs.anthropic.com/en/docs/claude-code/mcp

useful MCPs

sample config:

{
  "load_variables_from": [
    {
      "variable_loader_type": "dotenv",
      "env_file_path": "~/.env"
    }
  ],
  "manual_call_templates": [
    {
      "name": "puppeteer",
      "call_template_type": "mcp",
      "config": {
        "mcpServers": {
          "puppeteer_server": {
            "command": "npx",
            "args": ["-y", "@modelcontextprotocol/server-puppeteer"],
            "env": {
              "PUPPETEER_LAUNCH_OPTIONS": "{\"headless\": false}"
            }
          }
        }
      }
    }
  ]
}

running models

analytics tools