Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions services/mcp/src/bugbug_mcp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@

mcp = FastMCP("Firefox Development MCP Server")

# Temporarily disabled due to https://github.com/mozilla/bugbug/issues/5890.
# Once that issue is resolved, we should re-enable the Bugzilla search tool.
mcp.disable(names={"bugzilla_quick_search"})


@functools.cache
def get_code_review_tool():
Expand Down
4 changes: 4 additions & 0 deletions services/mcp/tests/test_bugzilla_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ def mock_get_data():
return mock_bugzilla_class


@pytest.mark.skip(
reason="bugzilla_quick_search tool is temporarily disabled due to "
"https://github.com/mozilla/bugbug/issues/5890"
)
class TestBugzillaQuickSearch:
"""Test the bugzilla_quick_search tool."""

Expand Down