chore: MCP server configuration #1334
Merged
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.
This pull request introduces a comprehensive setup for integrating multiple MCP (Model Context Protocol) servers into the development environment. It includes changes to the dev container configuration, documentation, and VS Code settings to support these servers. The most important changes are grouped into configuration updates, new features, and documentation enhancements.
Configuration Updates:
.devcontainer/devcontainer.json
: UpdatedpostCreateCommand
to execute a new startup script (.devcontainer/startup.sh
) for initializing dependencies..vscode/mcp.json
: Added configuration for four MCP servers (memory
,fetch
,sequential-thinking
, andfile-system
) to enable their integration with GitHub Copilot Chat..vscode/settings.json
: Enabled MCP-related settings (chat.mcp.enabled
andchat.mcp.discovery.enabled
) and changedfiles.autoSave
toafterDelay
with a 3000ms delay.New Features:
.devcontainer/startup.sh
: Added a startup script to initialize the development environment, including verifying Node.js, installing theuv
package manager, and restoring .NET packages.Documentation Enhancements:
.github/instructions/mcp-servers.md
: Added detailed documentation on the configuration, usage, and verification of the four MCP servers (memory
,fetch
,sequential-thinking
, andfile-system
).Minor Changes:
.vscode/extensions.json
: Removed thecodacy-app.codacy
extension from the recommended list.