io.github.antonbaider/remcp

MCPCommunitylive
v0.2.49io.github.antonbaiderUnknownAktualisiert heuteGitHub

Securely use files, terminals, screenshots and processes on computers you pair with ReMCP.

Endpunkt-Statuslive
geprüft vor 1 Tag · 400 ms · Authentifizierung erforderlich
100 % der letzten 1 Prüfung hat diesen Endpunkt erreicht
Läuft in
ClaudeCursorCopilotChatGPTGemini

Abgeleitet aus den Transporten, die dieser Eintrag deklariert (streamable-http). Ein Client, der hier nicht steht, ist damit nicht ausgeschlossen — Forge kann ihn nur nicht bestätigen.

Automatisch aus öffentlichen Quellen indexiert. Vom Entwickler auf Forge noch nicht verifiziert.Diesen Eintrag beanspruchen →
1GitHub-Sterne
heuteLetzte Aktualisierung
Paket
Autorio.github.antonbaider
LizenzUnknown
Version0.2.49
Quellemcp-registry
Trust-Status
B
60/100Gut
Im Forge-Index gelistet+10/10
Publisher-Identität verifiziert+0/30
Publisher: führe `forge publish` im Repo aus, um die Inhaberschaft zu beanspruchen
Domain-Verifizierung+0/10
Für diesen Eintragstyp derzeit nicht verfügbar — die Domain-Prüfung läuft heute nur für npm-gestützte Pakete, diese Zeile lässt sich hier also noch nicht erreichen, unabhängig davon, was auf der Domain liegt.
Prompt-Injection-Scan · sauber+30/30
Obfuskations-/Exfiltrations-Scan · sauber+20/20
Füge das in Claude Code, Cursor oder einen beliebigen KI-Assistenten ein, um alle Lücken zu schließen
StatusVon der Community indexiert
PublisherNicht verifiziert
SignaturNicht signiert
Domain
Herkunft
AbhängigkeitenNicht auditiert
Tool-Oberfläche40 Tools · 10 privilegiert
Sicherheits-Scan✓ SaubervHEAD · vor 1 TWie gut funktioniert dieser Scan?
EvaluierungenKeine
Indexiert19. Sept. 2026

Die Verifizierung bestätigt die Identität des Publishers (die Inhaberschaft am Repo), nicht die Sicherheit des Codes. Der Sicherheits-Scan deckt bekannte CVEs und verdächtige Installationsskripte ab.

Tools

40 Tools · 10 privilegiert
Statisch aus dem veröffentlichten Paket extrahiertvHEAD · 1d ago

Aus dem Quellcode gelesen, den npm tatsächlich ausliefert, zum Zeitpunkt des Scans. Das Paket wurde nie ausgeführt. Tools, die zur Laufzeit dynamisch registriert werden oder in gebündeltem beziehungsweise minifiziertem Code stecken, können übersehen werden — das hier ist also eine Untergrenze der Tool-Oberfläche, keine vollständige Erhebung.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

write_binaryprivilegiertWrite 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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

write_fileprivilegiertCreate 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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

write_filesprivilegiertCreate 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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

apply_patchprivilegiertApply 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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

edit_blockprivilegiertReplace 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…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

move_to_trashprivilegiertMove 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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

move_fileprivilegiertMove 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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

move_pathsprivilegiertMove 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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

delete_pathprivilegiertDelete 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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

delete_pathsprivilegiertDelete 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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

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.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

wait_for_process_outputKeine Beschreibung veröffentlicht

Dieses Tool hat keine Beschreibung veröffentlicht. Forge erfindet keine.

force_terminateKeine Beschreibung veröffentlicht

Dieses Tool hat keine Beschreibung veröffentlicht. Forge erfindet keine.

list_sessionsKeine Beschreibung veröffentlicht

Dieses Tool hat keine Beschreibung veröffentlicht. Forge erfindet keine.

get_system_infoKeine Beschreibung veröffentlicht

Dieses Tool hat keine Beschreibung veröffentlicht. Forge erfindet keine.

list_processesKeine Beschreibung veröffentlicht

Dieses Tool hat keine Beschreibung veröffentlicht. Forge erfindet keine.

35 von 40 Tools haben eine Beschreibung veröffentlicht.

Tool-Namen und -Beschreibungen stammen vom Publisher und werden wortgetreu als inerter Text angezeigt. Es sind die Zeichenketten, die ein MCP-Client an ein Modell übergibt, deshalb prüft Forge sie auf Prompt-Injection-Muster — jeder Befund erscheint oben beim Sicherheits-Scan. „Privilegiert“ ist ein Schlagwort-Treffer im Tool-Namen, keine Prüfung dessen, was das Tool tut: ein harmlos klingender Name kann trotzdem alles tun.

Über

Securely use files, terminals, screenshots and processes on computers you pair with ReMCP.

Schlagwörter
mcp
Alternativen
Tool-Oberflächen werden verglichen…

Keine Abdeckung der Abhängigkeiten

Dieser Eintrag veröffentlicht kein npm-Paket, daher hat Forge keinen Abhängigkeitsbaum dafür. Das ist eine Lücke in der Abdeckung — keine Aussage, dass er keine Abhängigkeiten hat.