Using deepthinking-ng mcp with AGY cli

You don’t need Claude Fable to build a quality app. You just need to improve the thinking process. I have been using https://github.com/tuapuikia/deepthinking-ng (I am the maintainer) to maintain my enterprise app, which is written in Java and Golang. It results in less hallucination with better code quality.

Sorry, I only use the Gemini LLM for my workload, and it is still the best LLM out there.

you need to edit the file located at <user_profile>/.gemini/config/mcp_config.json. Here is an example of the content of one:

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": [
        "chrome-devtools-mcp@latest",
        "--browser-url=http://127.0.0.1:9222",
        "-y"
      ]
    },
    "postgres-db": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

So just follow what is in the instructions of the repo:

{
  "mcpServers": {
    "deepthinking-ng": {
      "command": "deepthinking-ng",
      "args": [],
      "env": {
        "THINKING_WORKER_COUNT": "5",
        "SHM_ROOT": "/dev/shm/deepthinking-ng",
        "DEEPTHINKING_TIMEOUT": "60s",
        "DEEPTHINKING_SOFT_TIMEOUT": "45s"
      }
    }
  }
}