
> ## Documentation Index
> Fetch the complete documentation index at: https://docs.leanmcp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Feedback

> Send feedback and bug reports directly from the CLI

# Send Feedback

The LeanMCP CLI includes a built-in command to send feedback, bug reports, and feature requests directly to the LeanMCP team.

## Usage

```bash theme={null}
leanmcp send-feedback [message] [options]
```

### Options

| Option           | Description                                            |
| :--------------- | :----------------------------------------------------- |
| `--anon`         | Send feedback anonymously (skips authentication check) |
| `--include-logs` | Attach recent CLI log files to help debug issues       |
| `-h, --help`     | Display help for command                               |

## Examples

### Quick Feedback

Send a simple one-line message:

```bash theme={null}
leanmcp send-feedback "I really like the new project structure!"
```

### Interactive Mode

If you run the command without a message, you can type a multi-line message (press Ctrl+D or Ctrl+Z when finished) or pipe input from another command:

```bash theme={null}
# Type interactively
leanmcp send-feedback

# Pipe from a file or command
cat issues.txt | leanmcp send-feedback
```

### Sending Logs

If you encounter an error, you can attach your recent CLI logs to help us debug the issue. This is extremely helpful for troubleshooting deployment or build failures.

```bash theme={null}
leanmcp send-feedback "Deploy failed with timeout error" --include-logs
```

<Note>
  **Privacy**: When using `--include-logs`, the CLI attaches the 3 most recent log files from `~/.leanmcp/logs/`.
  Sensitive information like API keys is automatically redacted from these logs before sending.
</Note>

### Anonymous Feedback

You can send feedback without being logged in or identifying yourself:

```bash theme={null}
leanmcp send-feedback "Just trying out the CLI, looks good" --anon
```

## What happens next?

Your feedback is reviewed directly by the engineering team. We take all feedback seriously and use it to prioritize our roadmap.

<Card title="Join the Community" icon="discord" href="https://discord.com/invite/DsRcA3GwPy">
  For real-time discussion and support, join our Discord server.
</Card>
