mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2026-04-05 03:45:41 +00:00
* feat: first mcp impl Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * chore: update Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * chore: wip Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * chore: switcheed to stdio transport Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * chore: readme Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * feat: fix the linter 🤖 Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * feat: fix the linter 🤖 Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * feat(mcp): implement MCP server and handler - Implement MCP server and handler - Add MCP server to serve - Add MCP handler to handle MCP requests - Add MCP server to serve - Add MCP handler to handle MCP requests Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * feat: consolidating code duplication Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * feat: added http sse support Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * chore: fixed broken tests Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * chore: updated and fixed linter Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * chore: updated and fixed linter Signed-off-by: Alex Jones <alexsimonjones@gmail.com> * chore: updated the linter issues Signed-off-by: Alex Jones <alexsimonjones@gmail.com> --------- Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
60 lines
1.4 KiB
Markdown
60 lines
1.4 KiB
Markdown
# K8sGPT MCP Client Example
|
|
|
|
This directory contains an example of how to use the K8sGPT MCP client in a real-world scenario.
|
|
|
|
## Prerequisites
|
|
|
|
- Go 1.16 or later
|
|
- Access to a Kubernetes cluster
|
|
- `kubectl` configured to access your cluster
|
|
|
|
## Building the Example
|
|
|
|
To build the example, run:
|
|
|
|
```bash
|
|
go build -o mcp-client-example
|
|
```
|
|
|
|
## Running the Example
|
|
|
|
To run the example, use the following command:
|
|
|
|
```bash
|
|
./mcp-client-example --kubeconfig=/path/to/kubeconfig --namespace=default
|
|
```
|
|
|
|
### Command-line Flags
|
|
|
|
- `--kubeconfig`: Path to the kubeconfig file (optional, defaults to the standard location)
|
|
- `--namespace`: Kubernetes namespace to analyze (optional)
|
|
|
|
## Example Output
|
|
|
|
When you run the example, you should see output similar to the following:
|
|
|
|
```
|
|
Starting MCP client...
|
|
```
|
|
|
|
The client will continue running until you press Ctrl+C to stop it.
|
|
|
|
## Integration with Mission Control
|
|
|
|
To integrate this example with Mission Control, you need to:
|
|
|
|
1. Start the MCP client using the example
|
|
2. Configure Mission Control to connect to the MCP client
|
|
3. Use Mission Control to analyze your Kubernetes cluster
|
|
|
|
## Troubleshooting
|
|
|
|
If you encounter any issues, check the following:
|
|
|
|
1. Ensure that your Kubernetes cluster is accessible
|
|
2. Verify that your kubeconfig file is valid
|
|
3. Check that the namespace you specified exists
|
|
|
|
## License
|
|
|
|
This code is licensed under the Apache License 2.0. |