Skip to content
ronnyli edited this page May 29, 2025 · 1 revision

CleanShot 2025-05-29 at 14 18 43@2x

If you are running into "Failed to create client errors" when following the README setup instructions, try the following:

  1. First, test the MCP server in Claude Desktop to make sure you are already set up properly.
  2. If that is working, create a separate bash script that runs the command for starting the MCP server. For most people it should look something like this:
#!/bin/sh
cd /absolute/path/to/clojure-mcp && clojure -X:mcp :port 7888
  1. Make the script executable
chmod a+x /absolute/path/to/script
  1. Add to Cursor's MCP settings
  "mcpServers": {
    "clojure-mcp": {
      "command": "/absolute/path/to/script"
    }
  }
  1. Reload from Cursor Settings and you should be good to go! CleanShot 2025-05-29 at 14 31 47@2x
Clone this wiki locally