-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Add Filesystem- server to community list #2530
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Adds code-workspace like functionality to Visual Studio 2022. Allowing access to selected external project files to add context to your current workspace.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This pull request adds a FileSystem Server to the community-maintained MCP servers list in the README. The server provides workspace-like functionality for Visual Studio 2022 by allowing AI agents to access selected local file system folders and files.
- Adds a new community server entry for filesystem access in Visual Studio 2022
- Provides code-workspace functionality for legacy project development
- Enables selective access to project folders and file types
README.md
Outdated
| - **[Figma](https://github.com/GLips/Figma-Context-MCP)** - Give your coding agent direct access to Figma file data, helping it one-shot design implementation. | ||
| - **[Figma](https://github.com/paulvandermeijs/figma-mcp)** - A blazingly fast MCP server to read and export your Figma design files. | ||
| - **[Files](https://github.com/flesler/mcp-files)** - Enables agents to quickly find and edit code in a codebase with surgical precision. Find symbols, edit them everywhere. | ||
| - **[FileSystem Server](https://github.com/Oncorporation/filesystem_server)** - Local MCP for Visual Studio 2022 that provides access to selected project's local file system folders, allowing AI agents to list, read and find files useful to your current project. It gives code-workspace type functionality to Visual Studio 2022 |
Copilot
AI
Aug 11, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The description is repetitive and could be more concise. Consider shortening to: 'Local MCP server for Visual Studio 2022 that provides code-workspace functionality by giving AI agents selective access to project folders and files.'
| - **[FileSystem Server](https://github.com/Oncorporation/filesystem_server)** - Local MCP for Visual Studio 2022 that provides access to selected project's local file system folders, allowing AI agents to list, read and find files useful to your current project. It gives code-workspace type functionality to Visual Studio 2022 | |
| - **[FileSystem Server](https://github.com/Oncorporation/filesystem_server)** - Local MCP server for Visual Studio 2022 that provides code-workspace functionality by giving AI agents selective access to project folders and files. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion implemented!
Thank you
Suggestion taken
|
Thank you @Oncorporation for your contribution! 🎉 Your FileSystem Server MCP server has been accepted and included as part of our batch integration in PR #2553. We really appreciate you taking the time to submit this integration. The server is now officially listed in our README and available to the community! |
|
Thank you! |
Description
Adds code-workspace like functionality to Visual Studio 2022. Allowing local access to selected additional project files to add context to your current workspace. It gives access only to user selected folders and file types.
Motivation and Context
I work on many projects and this allows me to pull context and code from other projects as if they were in the same code-workspace.
How Has This Been Tested?
I run this on several workstations that use VS 2022 Professional for legacy projects.
Breaking Changes
None
Types of changes
Checklist
Additional context
The selected project folders and files can be set in either a config.json for troubleshooting or in the MCP definition in .mcp.json.
If the user prefers to only use config.json, it needs to be copied in the same folder as .mcp.json. This is more difficult to maintain.
The mcp definition is preferred:
"filesystem-server": { "command": "python", "args": [ "D:/Projects/filesystem_server/app.py", "--allowed-dirs", "D:/projects", "D:/Webs" "--allowed-extensions", ".py", ".js", ".ts", ".json", ".md", ".txt", ".yml", ".yaml", ".toml", ".cfg", ".ini", ".css", ".scss", ".htm", ".html", ], "cwd": "D:/Projects/filesystem_server" }