Securely use files, terminals, screenshots and processes on computers you pair with ReMCP.
Déduit des transports déclarés par cette annonce (streamable-http). Un client absent de cette liste n’est pas écarté pour autant — c’est simplement quelque chose que Forge ne peut pas confirmer.
La vérification confirme l’identité de l’éditeur (la propriété du dépôt), pas la sûreté du code. L’analyse de sécurité couvre les CVE connues et les scripts d’installation suspects.
Lu dans le code que npm livre réellement, au moment de l’analyse. Le paquet n’a jamais été exécuté. Les outils enregistrés dynamiquement à l’exécution, ou cachés dans du code empaqueté ou minifié, peuvent passer inaperçus — c’est donc un plancher de la surface d’outils, pas un recensement complet.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
write_binaryprivilégié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.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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
write_fileprivilégié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.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.
Aucun schéma d’entrée n’a été publié pour cet outil.
write_filesprivilégié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.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.
Aucun schéma d’entrée n’a été publié pour cet outil.
apply_patchprivilégié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.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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
edit_blockprivilégié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…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…
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
move_to_trashprivilégié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.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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
move_fileprivilégiéMove 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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
move_pathsprivilégié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.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.
Aucun schéma d’entrée n’a été publié pour cet outil.
delete_pathprivilégiéDelete 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.
Aucun schéma d’entrée n’a été publié pour cet outil.
delete_pathsprivilégiéDelete 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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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…
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
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.
Aucun schéma d’entrée n’a été publié pour cet outil.
wait_for_process_outputAucune description publiéeCet outil n’a publié aucune description. Forge n’en invente pas.
force_terminateAucune description publiéeCet outil n’a publié aucune description. Forge n’en invente pas.
list_sessionsAucune description publiéeCet outil n’a publié aucune description. Forge n’en invente pas.
get_system_infoAucune description publiéeCet outil n’a publié aucune description. Forge n’en invente pas.
list_processesAucune description publiéeCet outil n’a publié aucune description. Forge n’en invente pas.
35 outils sur 40 ont publié une description.
Les noms et descriptions d’outils sont écrits par l’éditeur et affichés tels quels, comme du texte inerte. Ce sont les chaînes qu’un client MCP transmet à un modèle, alors Forge y recherche des motifs d’injection de prompt — tout constat apparaît avec l’analyse de sécurité ci-dessus. « Privilégié » est une correspondance de mot-clé sur le nom de l’outil, pas un audit de ce qu’il fait : un nom anodin peut tout de même tout faire.
Securely use files, terminals, screenshots and processes on computers you pair with ReMCP.
Les noms cliquables ouvrent l’index Forge de toutes les entrées observées exposant cet outil. Parcourir tous les outils indexés.
Cette entrée ne publie aucun paquet npm : Forge n'a donc pas d'arbre de dépendances pour elle. C'est une lacune de couverture — pas une affirmation qu'elle n'a aucune dépendance.