@soapbox.pub/developer-mcp
v0.2.2
Published
Shell and Text Editor MCP
Readme
Developer MCP
Shell and Text Editor MCP
Project Overview
This MCP can replace the Goose built-in developer MCP.
Usage
Add the server to Goose or another MCP client:
npx -y @soapbox.pub/developer-mcpAvailable Tools
The implementation provides four powerful tools:
shell: Execute a command in the shell
- Parameters:
command(string): The command to execute
- Parameters:
text_editor_view: View the content of a file
- Parameters:
path(string): Absolute path to the file to view
- Parameters:
text_editor_write: Create or overwrite a file with new content
- Parameters:
path(string): Absolute path to the file to writefile_text(string): Content to write to the file
- Parameters:
text_editor_str_replace: Replace a string in a file with a new string
- Parameters:
path(string): Absolute path to the fileold_str(string): The string to replacenew_str(string): The new string to insert
- Parameters:
