io.github.antonbaider/remcp

MCPcommunitylive
v0.2.49io.github.antonbaiderUnknownUpdated todayGitHub

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

Endpoint healthlive
checked 1 day ago · 400ms · auth required
100% of the last 1 check reached this endpoint
Works in
ClaudeCursorCopilotChatGPTGemini

Inferred from the transports this listing declares (streamable-http). A client not listed here hasn’t been ruled out — it just isn’t something Forge can confirm.

Automatically indexed from public sources. Not yet verified by the developer on Forge.Claim this listing →
1GitHub stars
todayLast update
Package
Authorio.github.antonbaider
LicenseUnknown
Version0.2.49
Sourcemcp-registry
Trust Status
B
60/100Good
Listed in Forge index+10/10
Publisher identity verified+0/30
Publisher: run `forge publish` from the repo to claim ownership
Domain verification+0/10
Not currently available for this listing type — the domain-verification check only runs for npm-backed packages today, so this row cannot be earned here yet regardless of what's hosted at the domain.
Prompt-injection scan · clean+30/30
Obfuscation / exfil scan · clean+20/20
Paste into Claude Code, Cursor, or any AI assistant to fix all gaps
StatusCommunity-indexed
PublisherUnverified
SignatureUnsigned
Domain
Provenance
DependenciesNot audited
Tool surface40 tools · 10 privileged
Security scan✓ CleanvHEAD · 1d agoHow well does this scan work?
EvalsNone
IndexedSep 19, 2026

Verification confirms publisher identity (repo ownership), not code safety. The security scan covers known CVEs and suspicious install scripts.

Tools

40 tools · 10 privileged
Statically extracted from the published packagevHEAD · 1d ago

Read out of the source npm actually ships, at scan time. The package was never executed. Tools registered dynamically at runtime, or hidden inside bundled or minified code, can be missed — so this is a floor on the tool surface, not a complete census of it.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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

No input schema was published for this tool.

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

No input schema was published for this tool.

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

No input schema was published for this tool.

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.

No input schema was published for this tool.

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

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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

No input schema was published for this tool.

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.

No input schema was published for this tool.

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

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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

No input schema was published for this tool.

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

No input schema was published for this tool.

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

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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…

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

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.

No input schema was published for this tool.

wait_for_process_outputNo description published

This tool published no description. Forge does not invent one.

force_terminateNo description published

This tool published no description. Forge does not invent one.

list_sessionsNo description published

This tool published no description. Forge does not invent one.

get_system_infoNo description published

This tool published no description. Forge does not invent one.

list_processesNo description published

This tool published no description. Forge does not invent one.

35 of 40 tools published a description.

Tool names and descriptions are written by the publisher and shown verbatim as inert text. They are the strings an MCP client passes to a model, so Forge scans them for prompt-injection patterns — any finding appears with the security scan above. “Privileged” is a keyword match on the tool name, not an audit of what the tool does: a benign-sounding name can still do anything.

About

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

Keywords
mcp
Alternatives
Comparing tool surfaces…

No dependency coverage

This entry publishes no npm package, so Forge has no dependency tree for it. That is a gap in coverage — not a statement that it has no dependencies.