- Activate the mcp server by running python -m mcp_server.server at module_3 level
- Open new VS Code window with mcp-file-agent as the root folder and find "Run and Debug" (Ctrl+Shift+D) and press F5.
If you encounter an error called "npm.ps1 cannot be loaded because running scripts is disabled on this system."
Make sure to change the PowerShell Execution Policy to allow scripts to run:
- Open PowerShell as Administrator
- Check Current Policy with "Get-ExecutionPolicy -List"
- Set Execution Policy for Current User with "Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser"
- In the new Extension Development Host window, open the test workspace.
- Open Command Pallette(Ctrl+Shift+P)
- Type the command title: Start MCP File Agent Chat
- Activate MCP server using:
python mcp_servers/file_system_server.py
- Activate agents' server using:
python -m a2a_servers.agent_servers.specification_agent_server
- Activate host agent using:
python -m a2a_servers.agent_servers.host_agent_server
- Contact the host agent by running:
python -m a2a_servers.run_from_local_client
- feature: introduce new feature
- fix: fix error
- docs: change document like README, ...
- test: add or modify test
- style: changes related to format, indentation, not related to logic
- refactor: changes src code but not affect the logic, usually clean up or rename, ...
- performance: optimize performance
- revert: revert the previous commit