Skip to content

Commit ec66617

Browse files
Update CircleCI and LogCLI tools to open_source ecosystem with non_windows OS type (Cursor) (#322)
1 parent bf9fb54 commit ec66617

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

config/env.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ MCP_PLUGIN_MODE=all
116116
# MCP_DISABLED_PLUGINS=tool4,tool5
117117

118118
# Ecosystem Configuration
119-
# Ecosystems to enable: "*" for all (default) or comma-separated list (e.g., "microsoft,general")
120-
# Available ecosystems: microsoft, general
119+
# Ecosystems to enable: "*" for all (default) or comma-separated list (e.g., "microsoft,general,open-source")
120+
# Available ecosystems: microsoft, general, open-source
121121
MCP_ECOSYSTEMS=*
122122

123123
# OS Configuration

plugins/circleci/circleci_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from mcp_tools.plugin import register_tool
88

99

10-
@register_tool(ecosystem="general", os_type="all")
10+
@register_tool(ecosystem="open-source", os_type="non-windows")
1111
class CircleCITool(ToolInterface):
1212
"""Interact with the CircleCI REST API."""
1313

plugins/logcli/logcli_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from mcp_tools.plugin import register_tool
77

88

9-
@register_tool
9+
@register_tool(ecosystem="open-source", os_type="non-windows")
1010
class LogCliTool(ToolInterface):
1111
"""Interact with Grafana Loki via the ``logcli`` command line tool."""
1212

0 commit comments

Comments
 (0)