-
-
Notifications
You must be signed in to change notification settings - Fork 27
Cursor
ronnyli edited this page May 29, 2025
·
1 revision
If you are running into "Failed to create client errors" when following the README setup instructions, try the following:
- First, test the MCP server in Claude Desktop to make sure you are already set up properly.
- 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
- Make the script executable
chmod a+x /absolute/path/to/script
- Add to Cursor's MCP settings
"mcpServers": {
"clojure-mcp": {
"command": "/absolute/path/to/script"
}
}
- Reload from Cursor Settings and you should be good to go!