You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
show_result_in_chat=true, -- Show tool results directly in chat buffer
35
35
format_tool=nil, -- function(tool_name:string, tool: CodeCompanion.Agent.Tool) : string Function to format tool names to show in the chat buffer
36
36
-- MCP Resources
37
37
make_vars=true, -- Convert MCP resources to #variables for prompts
38
-
-- MCP Prompts
38
+
-- MCP Prompts
39
39
make_slash_commands=true, -- Add MCP prompts as /slash commands
40
40
}
41
41
}
@@ -50,7 +50,7 @@ MCP Hub provides multiple ways to access MCP tools in CodeCompanion, giving you
50
50
### Tool Access
51
51
52
52
#### 1. Universal MCP Access (`@mcp`)
53
-
Adds all available MCP servers to the system prompt and provides LLM with `@mcp` tool group which has `use_mcp_tool` and `access_mcp_resource` tools.
53
+
Adds all available MCP servers to the system prompt and provides LLM with `@mcp` tool group which has `use_mcp_tool` and `access_mcp_resource` tools.
54
54
```
55
55
@{mcp} What files are in the current directory?
56
56
```
@@ -60,8 +60,8 @@ You can add all the enabled tools from a specific server with server groups. Unl
60
60
61
61
```
62
62
@{neovim} Read the main.lua file # All tools from the neovim server will be added as function tools
63
-
@{github} Create an issue
64
-
@{fetch} Get this webpage
63
+
@{github} Create an issue
64
+
@{fetch} Get this webpage
65
65
```
66
66
67
67
Server groups are automatically created based on your connected MCP servers when enabled via `make_tools`. Check your MCP Hub UI to see which servers you have connected.
@@ -85,7 +85,7 @@ Example configuration for custom tool groups:
0 commit comments