-
Notifications
You must be signed in to change notification settings - Fork 309
ROB-1292 mcp docs #1824
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+58
−0
Merged
ROB-1292 mcp docs #1824
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b856e22
basic docs of how to set up remote mcp server
RoiGlinik f8304b1
Merge branch 'master' into ROB-1292-mcp-docs
RoiGlinik 2fe4a2d
add tech preview
RoiGlinik a4b3f6d
update docs to mcp_servers config
RoiGlinik dc4b80d
fix url
RoiGlinik 8997f7f
Merge branch 'master' into ROB-1292-mcp-docs
RoiGlinik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| Remote MCP Servers | ||
| ==================== | ||
|
|
||
| .. warning:: | ||
|
|
||
| Remote MCP servers are in **Tech Preview** stage. | ||
|
|
||
|
|
||
| HolmesGPT can integrate with remote MCP servers using SSE mode. | ||
| This capability enables HolmesGPT to access external data sources and tools in real time. | ||
| This guide provides step-by-step instructions for configuring HolmesGPT to connect with remote MCP servers over SSE. | ||
|
|
||
| Example : MCP server configuration | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
|
||
| .. md-tab-set:: | ||
|
|
||
| .. md-tab-item:: Robusta Helm Chart | ||
|
|
||
| **Helm Values:** | ||
|
|
||
| .. code-block:: yaml | ||
|
|
||
| holmes: | ||
| mcp_servers: | ||
| mcp_server_1: | ||
| # human-readable description of the mcp server (this is not seen by the AI model - its just for users) | ||
| description: "Remote mcp server" | ||
| url: "http://example.com:8000/sse" | ||
|
|
||
| mcp_server_2: | ||
| description: "MCP server that runs in my cluster" | ||
| url: "http://<service-name>.<namespace>.svc.cluster.local:<service-port>" | ||
| config: | ||
| headers: | ||
| key: "{{ env.my_mcp_server_key }}" # You can use holmes environment variables as headers for the MCP server requests. | ||
|
|
||
| Update your Helm values with the provided YAML configuration, then apply the changes with Helm upgrade: | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| helm upgrade robusta robusta/robusta --values=generated_values.yaml --set clusterName=<YOUR_CLUSTER_NAME> | ||
|
|
||
|
|
||
|
|
||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.