v3.7.1

ravitemer/mcp-hubv3.7.1Jul 4, 2025by ravitemer

AI Summary

Added the ability to specify a current working directory for stdio-based servers in the configuration.

Key Highlights

  • New cwd field for stdio servers
  • Configuration example provided

New Features

  • cwd field for stdio servers

Full Release Notes


### Added
- **`cwd` field for stdio servers**: can specify a `cwd` (current working directory) for stdio-based servers in the config.
  - Example:
    ```json
    {
      "server-name": {
        "cwd": "/home/ubuntu/server-dir/",
        "command": "npm",
        "args": ["start"]
      }
    }
    ```