Step 247: file operation tools for MCP (read, write, create, diff, list)

Adds 5 workspace-aware file I/O tools to the MCP server so agents can
manage files without a GUI. All paths are resolved against --workspace
root with escape-rejection security. 12/12 tests pass, tool count now 15.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-02-11 05:59:02 +00:00
parent 06706aeacf
commit 1131fdf73d
8 changed files with 817 additions and 2 deletions

View File

@@ -1391,4 +1391,15 @@ target_link_libraries(step246_test PRIVATE
tree_sitter_java tree_sitter_rust tree_sitter_go
tree_sitter_org)
# Step 247: File operation tools for MCP
add_executable(step247_test tests/step247_test.cpp)
target_include_directories(step247_test PRIVATE src)
target_link_libraries(step247_test PRIVATE
nlohmann_json::nlohmann_json
unofficial::tree-sitter::tree-sitter
tree_sitter_python tree_sitter_cpp tree_sitter_elisp
tree_sitter_javascript tree_sitter_typescript
tree_sitter_java tree_sitter_rust tree_sitter_go
tree_sitter_org)
# Step 12: Dear ImGui shell scaffolding created (main.cpp exists but not built due to dependencies)