Securely use files, terminals, screenshots and processes on computers you pair with ReMCP.
Dedotto dai trasporti dichiarati da questo annuncio (streamable-http). Un client che non compare qui non è escluso — semplicemente Forge non è in grado di confermarlo.
La verifica conferma l’identità del publisher (la proprietà del repo), non la sicurezza del codice. L’analisi di sicurezza copre i CVE noti e gli script di installazione sospetti.
Letto dal codice che npm distribuisce davvero, al momento dell’analisi. Il pacchetto non è mai stato eseguito. Gli strumenti registrati dinamicamente a runtime, o nascosti in codice impacchettato o minificato, possono sfuggire — quindi questo è un limite inferiore della superficie di strumenti, non un censimento completo.
read_fileRead a file on this computer: text as text, and .docx or .pdf as their extracted document text (a scanned or font-obfuscated PDF says so instead of returning noise). Use offset and length to page through large files; a negative offset reads from the end of the file.Read a file on this computer: text as text, and .docx or .pdf as their extracted document text (a scanned or font-obfuscated PDF says so instead of returning noise). Use offset and length to page through large files; a negative offset reads from the end of the file.
Per questo strumento non è stato pubblicato alcuno schema di input.
read_filesRead every file matching a glob under a directory in one call, each section prefixed with its path and line count. Use this to load a whole project area into context quickly instead of one read per file.Read every file matching a glob under a directory in one call, each section prefixed with its path and line count. Use this to load a whole project area into context quickly instead of one read per file.
Per questo strumento non è stato pubblicato alcuno schema di input.
read_multiple_filesRead several text files in one call. Each file is returned separately and a failure to read one file does not stop the others.Read several text files in one call. Each file is returned separately and a failure to read one file does not stop the others.
Per questo strumento non è stato pubblicato alcuno schema di input.
read_imageReturn an image file (PNG, JPEG, GIF, WebP, BMP, AVIF, or SVG) as a viewable image, so screenshots and diagrams can be inspected. Fails above the inline size limit.Return an image file (PNG, JPEG, GIF, WebP, BMP, AVIF, or SVG) as a viewable image, so screenshots and diagrams can be inspected. Fails above the inline size limit.
Per questo strumento non è stato pubblicato alcuno schema di input.
read_binaryRead any file as base64, in chunks, for transferring binaries, images, archives, or documents off the computer. Returns size, offset, and nextOffsetBytes; call again with offset_bytes set to nextOffsetBytes until complete is true.Read any file as base64, in chunks, for transferring binaries, images, archives, or documents off the computer. Returns size, offset, and nextOffsetBytes; call again with offset_bytes set to nextOffsetBytes until complete is true.
Per questo strumento non è stato pubblicato alcuno schema di input.
write_binaryprivilegiatoWrite base64 data to a file byte for byte, creating parent directories. Use mode "append" to send a large file as consecutive chunks. Replaces the file by default.Write base64 data to a file byte for byte, creating parent directories. Use mode "append" to send a large file as consecutive chunks. Replaces the file by default.
Per questo strumento non è stato pubblicato alcuno schema di input.
hash_fileCompute a checksum of a file without reading it into memory. Useful to verify a copy, compare two files, or confirm a download.Compute a checksum of a file without reading it into memory. Useful to verify a copy, compare two files, or confirm a download.
Per questo strumento non è stato pubblicato alcuno schema di input.
list_directoryList the files and directories at a path. Entries are prefixed with [DIR], [FILE], [LINK], or [DENIED] when a subdirectory cannot be read. depth controls how many directory levels are included and pattern filters file names by glob.List the files and directories at a path. Entries are prefixed with [DIR], [FILE], [LINK], or [DENIED] when a subdirectory cannot be read. depth controls how many directory levels are included and pattern filters file names by glob.
Per questo strumento non è stato pubblicato alcuno schema di input.
get_file_infoReturn metadata for a file or directory: type, size, timestamps, permissions, and for small text files the line count.Return metadata for a file or directory: type, size, timestamps, permissions, and for small text files the line count.
Per questo strumento non è stato pubblicato alcuno schema di input.
write_fileprivilegiatoCreate a file or change its full content. Parent directories are created automatically. Replaces the file by default; use mode "append" to add to the end. For binary data pass encoding-free base64 through write_binary instead.Create a file or change its full content. Parent directories are created automatically. Replaces the file by default; use mode "append" to add to the end. For binary data pass encoding-free base64 through write_binary instead.
Per questo strumento non è stato pubblicato alcuno schema di input.
write_filesprivilegiatoCreate or replace many files in one call, each with its own path, content, and optional mode. Use this to scaffold a project or apply a multi-file change without one round trip per file.Create or replace many files in one call, each with its own path, content, and optional mode. Use this to scaffold a project or apply a multi-file change without one round trip per file.
Per questo strumento non è stato pubblicato alcuno schema di input.
apply_patchprivilegiatoApply a unified diff to one file or to several files at once, matching each hunk with a little fuzz so small offsets and whitespace differences still apply. This is the fastest way to land a multi-line change a model has already worked out. Pass dry_run to see the result as a diff first.Apply a unified diff to one file or to several files at once, matching each hunk with a little fuzz so small offsets and whitespace differences still apply. This is the fastest way to land a multi-line change a model has already worked out. Pass dry_run to see the result as a diff first.
Per questo strumento non è stato pubblicato alcuno schema di input.
set_permissionsChange the permission mode of a file or directory, optionally recursively and optionally with a numeric owner. Use this to make a script executable after writing it.Change the permission mode of a file or directory, optionally recursively and optionally with a numeric owner. Use this to make a script executable after writing it.
Per questo strumento non è stato pubblicato alcuno schema di input.
edit_blockprivilegiatoReplace an exact block of text in a file. Provide enough surrounding context to make old_string unique; the call fails unless the number of matches equals expected_replacements. When the exact text is not found, a whitespace-tolerant match is attempted and reported. Pass dry_run to preview the chan…Replace an exact block of text in a file. Provide enough surrounding context to make old_string unique; the call fails unless the number of matches equals expected_replacements. When the exact text is not found, a whitespace-tolerant match is attempted and reported. Pass dry_run to preview the chan…
Per questo strumento non è stato pubblicato alcuno schema di input.
replace_linesReplace an inclusive 1-based line range with new text. The rest of the file, including its line endings, is preserved. Pass dry_run to preview the change as a diff without writing.Replace an inclusive 1-based line range with new text. The rest of the file, including its line endings, is preserved. Pass dry_run to preview the change as a diff without writing.
Per questo strumento non è stato pubblicato alcuno schema di input.
replace_in_filesReplace text or a regular expression across the text files under a path and report what changed. Applies immediately; pass dry_run true to preview the affected files first.Replace text or a regular expression across the text files under a path and report what changed. Applies immediately; pass dry_run true to preview the affected files first.
Per questo strumento non è stato pubblicato alcuno schema di input.
diff_filesShow a unified diff between two local text files, with line counts. Useful to check what changed before reporting or reverting it.Show a unified diff between two local text files, with line counts. Useful to check what changed before reporting or reverting it.
Per questo strumento non è stato pubblicato alcuno schema di input.
move_to_trashprivilegiatoMove a file or directory to the system trash instead of deleting it, so the change can be undone. When the trash is outside the device allowed roots, a .remcp-trash folder beside the file is used instead.Move a file or directory to the system trash instead of deleting it, so the change can be undone. When the trash is outside the device allowed roots, a .remcp-trash folder beside the file is used instead.
Per questo strumento non è stato pubblicato alcuno schema di input.
create_directoryCreate one directory or many in a single call, including any missing parent directories. Succeeds when a directory already exists.Create one directory or many in a single call, including any missing parent directories. Succeeds when a directory already exists.
Per questo strumento non è stato pubblicato alcuno schema di input.
move_fileprivilegiatoMove or rename a file or directory. Replaces an existing destination file by default; pass overwrite false to refuse instead.Move or rename a file or directory. Replaces an existing destination file by default; pass overwrite false to refuse instead.
Per questo strumento non è stato pubblicato alcuno schema di input.
copy_fileCopy one file to a new path, replacing the destination by default. Pass overwrite false to refuse an existing destination. Directories are not copied recursively.Copy one file to a new path, replacing the destination by default. Pass overwrite false to refuse an existing destination. Directories are not copied recursively.
Per questo strumento non è stato pubblicato alcuno schema di input.
copy_pathsCopy many files or whole directories in one call, each with its own source and destination. Directories are copied recursively.Copy many files or whole directories in one call, each with its own source and destination. Directories are copied recursively.
Per questo strumento non è stato pubblicato alcuno schema di input.
move_pathsprivilegiatoMove or rename many files or whole directories in one call, each with its own source and destination. Falls back to copy-and-delete across filesystems.Move or rename many files or whole directories in one call, each with its own source and destination. Falls back to copy-and-delete across filesystems.
Per questo strumento non è stato pubblicato alcuno schema di input.
delete_pathprivilegiatoDelete a file or a directory on the computer. Directories are removed with their contents unless recursive is false. The filesystem root is refused.Delete a file or a directory on the computer. Directories are removed with their contents unless recursive is false. The filesystem root is refused.
Per questo strumento non è stato pubblicato alcuno schema di input.
delete_pathsprivilegiatoDelete many files and directories in one call, reporting each result. Use move_to_trash instead when the deletion should be reversible.Delete many files and directories in one call, reporting each result. Use move_to_trash instead when the deletion should be reversible.
Per questo strumento non è stato pubblicato alcuno schema di input.
create_archivePack files and directories into a tar, tar.gz, or zip archive on the device, so a whole tree can be transferred or backed up in one call.Pack files and directories into a tar, tar.gz, or zip archive on the device, so a whole tree can be transferred or backed up in one call.
Per questo strumento non è stato pubblicato alcuno schema di input.
extract_archiveExtract a tar, tar.gz, tar.bz2, tar.xz, or zip archive on the device into a directory, creating it when needed.Extract a tar, tar.gz, tar.bz2, tar.xz, or zip archive on the device into a directory, creating it when needed.
Per questo strumento non è stato pubblicato alcuno schema di input.
take_screenshotCapture the screen of the paired computer and return it as an image, for GUI work, visual checks, and demonstrating what is on screen. Uses the standard desktop screenshot portal on Wayland, with grim, gnome-screenshot, spectacle, scrot, ImageMagick import, screencapture, or PowerShell fallbacks de…Capture the screen of the paired computer and return it as an image, for GUI work, visual checks, and demonstrating what is on screen. Uses the standard desktop screenshot portal on Wayland, with grim, gnome-screenshot, spectacle, scrot, ImageMagick import, screencapture, or PowerShell fallbacks de…
Per questo strumento non è stato pubblicato alcuno schema di input.
start_searchStart a filename or content search on this computer and return the first results. Content searches return "path:line: text" rows. Use get_more_search_results to page and stop_search to stop a long search.Start a filename or content search on this computer and return the first results. Content searches return "path:line: text" rows. Use get_more_search_results to page and stop_search to stop a long search.
Per questo strumento non è stato pubblicato alcuno schema di input.
get_more_search_resultsRead more results from a search started with start_search. Offset is zero-based; a negative offset returns the last N results.Read more results from a search started with start_search. Offset is zero-based; a negative offset returns the last N results.
Per questo strumento non è stato pubblicato alcuno schema di input.
stop_searchStop a running search. Results collected so far stay readable until the search is cleaned up.Stop a running search. Results collected so far stay readable until the search is cleaned up.
Per questo strumento non è stato pubblicato alcuno schema di input.
list_searchesList active and recent searches on this computer with their status and result counts.List active and recent searches on this computer with their status and result counts.
Per questo strumento non è stato pubblicato alcuno schema di input.
start_processRun a shell command on this computer and return its initial output. The process keeps running so read_process_output or interact_with_process can be used later. Commands can change local or external state.Run a shell command on this computer and return its initial output. The process keeps running so read_process_output or interact_with_process can be used later. Commands can change local or external state.
Per questo strumento non è stato pubblicato alcuno schema di input.
read_process_outputRead buffered output from a session started with start_process. Without an offset it returns output produced since the previous read.Read buffered output from a session started with start_process. Without an offset it returns output produced since the previous read.
Per questo strumento non è stato pubblicato alcuno schema di input.
interact_with_processSend one line of input to a running session and return the output it produces. Use this for REPLs and other interactive commands.Send one line of input to a running session and return the output it produces. Use this for REPLs and other interactive commands.
Per questo strumento non è stato pubblicato alcuno schema di input.
wait_for_process_outputNessuna descrizione pubblicataQuesto strumento non ha pubblicato alcuna descrizione. Forge non se la inventa.
force_terminateNessuna descrizione pubblicataQuesto strumento non ha pubblicato alcuna descrizione. Forge non se la inventa.
list_sessionsNessuna descrizione pubblicataQuesto strumento non ha pubblicato alcuna descrizione. Forge non se la inventa.
get_system_infoNessuna descrizione pubblicataQuesto strumento non ha pubblicato alcuna descrizione. Forge non se la inventa.
list_processesNessuna descrizione pubblicataQuesto strumento non ha pubblicato alcuna descrizione. Forge non se la inventa.
35 strumenti su 40 hanno pubblicato una descrizione.
I nomi e le descrizioni degli strumenti sono scritti dal publisher e mostrati alla lettera come testo inerte. Sono le stringhe che un client MCP passa a un modello, quindi Forge vi cerca schemi di prompt injection — ogni rilievo compare insieme all’analisi di sicurezza qui sopra. «Privilegiato» è una corrispondenza di parola chiave sul nome dello strumento, non una verifica di ciò che fa: un nome innocuo può comunque fare qualsiasi cosa.
Securely use files, terminals, screenshots and processes on computers you pair with ReMCP.
I nomi collegati aprono l’indice Forge di tutte le voci osservate esporre quello strumento. Sfoglia tutti gli strumenti indicizzati.
Questa voce non pubblica alcun pacchetto npm, quindi Forge non ha un albero delle dipendenze per essa. È una lacuna di copertura, non l'affermazione che non abbia dipendenze.