-
Notifications
You must be signed in to change notification settings - Fork 317
[q] Remove deepwiki and context7 MCP imports #3510
Description
Remove deepwiki and context7 MCP Imports
Summary
This PR removes the imports for deepwiki.md and context7.md MCP server configurations from two agentic workflows as requested in discussion #3509.
Changes Made
Modified Workflows
1. .github/workflows/scout.md
- Removed:
shared/mcp/deepwiki.mdimport - Removed:
shared/mcp/context7.mdimport
The Scout workflow is a deep research agent that still has access to:
- Tavily (web search)
- arXiv (academic papers)
- Microsoft Docs
- MarkItDown (document conversion)
2. .github/workflows/mcp-inspector.md
- Removed:
shared/mcp/deepwiki.mdimport - Removed:
shared/mcp/context7.mdimport
The MCP Inspector workflow still has access to a comprehensive set of MCP servers including:
- arXiv, ast-grep, Brave, Datadog, Fabric RTI, gh-aw, MarkItDown, Microsoft Docs, Notion, Sentry, Serena, server-memory, Slack, and Tavily
Impact
These changes will:
- Reduce the number of MCP servers configured in these workflows
- Simplify the workflow configurations
- Remove potentially unused or unnecessary dependencies
The workflows will continue to function with their remaining MCP server configurations.
Validation
The changes are straightforward import removals from the workflow frontmatter. The .lock.yml files will be automatically regenerated when the workflows are compiled.
Related
AI generated by Q
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download patch artifact
The patch file is available as an artifact (aw.patch) in the workflow run linked above.
To apply the patch locally:
# Download the artifact from the workflow run https://github.com/githubnext/gh-aw/actions/runs/19201666579
# (Use GitHub MCP tools if gh CLI is not available)
gh run download 19201666579 -n aw.patch
# Apply the patch
git am aw.patchShow patch (45 lines)
From e4795e2c0e6f182d145cb9710b6668e4c8af2f53 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]" <github-actions[bot]@users.noreply.github.com>
Date: Sun, 9 Nov 2025 01:55:18 +0000
Subject: [PATCH] Remove deepwiki and context7 MCP imports
- Removed deepwiki.md import from scout.md and mcp-inspector.md
- Removed context7.md import from scout.md and mcp-inspector.md
These MCP servers are no longer needed in these workflows.
---
.github/workflows/mcp-inspector.md | 2 --
.github/workflows/scout.md | 2 --
2 files changed, 4 deletions(-)
diff --git a/.github/workflows/mcp-inspector.md b/.github/workflows/mcp-inspector.md
index 28669a6..6416f63 100644
--- a/.github/workflows/mcp-inspector.md
+++ b/.github/workflows/mcp-inspector.md
@@ -26,9 +26,7 @@ imports:
- shared/mcp/ast-grep.md
# Note: azure.md excluded due to schema validation issue with entrypointArgs
- shared/mcp/brave.md
- - shared/mcp/context7.md
- shared/mcp/datadog.md
- - shared/mcp/deepwiki.md
- shared/mcp/fabric-rti.md
- shared/mcp/gh-aw.md
- shared/mcp/markitdown.md
diff --git a/.github/workflows/scout.md b/.github/workflows/scout.md
index 38a3e91..347b5e2 100644
--- a/.github/workflows/scout.md
+++ b/.github/workflows/scout.md
@@ -19,8 +19,6 @@ imports:
- shared/mcp/arxiv.md
- shared/mcp/tavily.md
- shared/mcp/microsoft-docs.md
- - shared/mcp/deepwiki.md
- - shared/mcp/context7.md
- shared/mcp/markitdown.md
- shared/jqschema.md
tools:
--
2.51.2